how to check for lowercase letters in python with ascii code code example
Example: how to check if a letter is lowercase in python
for c in s:
if c.islower():
print c
for c in s:
if c.islower():
print c