0
Q:

python lowercase

// turn to lower/upper
string = string.upper()
string = string.lower()

// check if all letter are lower or upper
string.islower()
string.isupper()
14
string.lower()
6
startString = "TeST StrIng"
lowerCaseString = startString.lower()
print(lowerCaseString)
# Output -> "test string"
1
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)) 
0

New to Communities?

Join the community