python word.lowercase code example
Example 1: python all lowercase letters
import string
print string.ascii_lowercaseOutputabcdefghijklmnopqrstuvwxyz
Example 2: python - convert to lowercase
students = ['Sarah', 'Mary', 'Anna', 'Charlotte']
# Option 1
students_lower = map(lambda x: x.lower(), students) # map() produces a generator
print(list(students_lower)) # give all elements of the generator
# Option 2
students_lower = [student.lower() for student in students] # list comprehension
# Option 3
students_lower = (student.lower() for student in students) # generator comprehension
print(list(students_lower))