Skip to content

Instantly share code, notes, and snippets.

@variux
Last active March 11, 2017 03:38
Show Gist options
  • Save variux/ef1661c17e3af29afcfe2598e959d170 to your computer and use it in GitHub Desktop.
Save variux/ef1661c17e3af29afcfe2598e959d170 to your computer and use it in GitHub Desktop.
Mayusculas y minusculas
texto = 'ProBando'
lowercase = 0
uppercase = 0
for c in texto:
if c.islower():
lowercase += 1
if c.isupper():
uppercase += 1
@bryanciris
Copy link

Amigo, el segundo if sobra

if c.isupper():
    uppercase += 1

utilice

else:
    uppercase += 1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment