change to lowercase in python code example
Example 1: how to lowercase list in python
[x.lower() for x in ["A","B","C"]]
['a', 'b', 'c']
>>> [x.upper() for x in ["a","b","c"]]
['A', 'B', 'C']
>>> map(lambda x:x.lower(),["A","B","C"])
['a', 'b', 'c']
>>> map(lambda x:x.upper(),["a","b","c"])
['A', 'B', 'C']
Example 2: python lowercase
string = string.upper()
string = string.lower()
string.islower()
string.isupper()
Example 3: python to uppercase
original = Hello, World!
#both of these work
upper = original.upper()
upper = upper(original)