Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #Regra D1
- def ver_maius(input):
- maius = 0
- lista_maius = "A B C D E F G H I J K L M N O P Q R S T U V W X Y Z".split()
- for char in input:
- if char in lista_maius:
- maius += 1
- if maius > 1:
- return False
- else:
- return True
Advertisement
Add Comment
Please, Sign In to add comment