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