to lowercase in python code example
Example 1: python lowercase
string = string.upper()
string = string.lower()
string.islower()
string.isupper()
Example 2: python convert string to lowercase
# By Alan W. Smith and Petar Ivanov
s = "Kilometer"
print(s.lower())
Example 3: python3 lowercase
str.lower()
Example 4: python string to lower
str = 'heLLo WorLD'
print(str.lower())
# hello world
Example 5: python all lowercase letters
import string
print string.ascii_lowercaseOutputabcdefghijklmnopqrstuvwxyz
Example 6: lowercase letters python
string.lower()