fork download
  1. from string import ascii_lowercase
  2.  
  3. def any_lowercase(s):
  4. for c in s:
  5. if c in ascii_lowercase:
  6. return True
  7. return False
  8.  
  9. print(any_lowercase("ASDdFHU"))
Success #stdin #stdout 0.04s 10344KB
stdin
Standard input is empty
stdout
True