how to make a set of all lower case characters in a string in python code example
Example 1: from uppercase to lowercase python
# By Alan W. Smith and Petar Ivanov
s = "Kilometer"
print(s.lower())
Example 2: python all lowercase letters
import string
print string.ascii_lowercaseOutputabcdefghijklmnopqrstuvwxyz