python convert string to lowercase
# By Alan W. Smith and Petar Ivanov
s = "Kilometer"
print(s.lower())
python convert string to lowercase
# By Alan W. Smith and Petar Ivanov
s = "Kilometer"
print(s.lower())
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))
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us