python check string is lowercase code example
Example 1: how to check if a letter is lowercase in python
for c in s:
if c.islower():
print c
Example 2: how to change a string to small letter in python
my_str = "Hello World"
my_str.lower()
print(my_str)