Last active
March 11, 2017 03:38
-
-
Save variux/ef1661c17e3af29afcfe2598e959d170 to your computer and use it in GitHub Desktop.
Mayusculas y minusculas
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
texto = 'ProBando' | |
lowercase = 0 | |
uppercase = 0 | |
for c in texto: | |
if c.islower(): | |
lowercase += 1 | |
if c.isupper(): | |
uppercase += 1 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Amigo, el segundo if sobra
utilice