check lowercase in python 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: python lowercase
// turn to lower/upper
string = string.upper()
string = string.lower()
// check if all letter are lower or upper
string.islower()
string.isupper()
Example 3: convert string to lowercase in python
str = 'HELLO'
print(str.lower())
Example 4: python convert string to lowercase
s = "Kilometer"
print(s.lower())
Example 5: how to check if a string is lowercase in python
string = "python"
string.islower()
string == string.lower()