convert uppercase to lower case python code example

Example 1: python to uppercase

text = "Random String"
text = text.upper() #Can also do 
text = upper(text)
print(text)

>> "RANDOM STRING"

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))