Ejemplo 1: cómo cambiar una cadena a letra minúscula en python
my_str = "Hello World"
my_str.lower()
print(my_str)
Ejemplo 2: python de mayúsculas a minúsculas
# By Alan W. Smith and Petar Ivanov
s = "Kilometer"
print(s.lower())
Ejemplo 3: python inferior
string.lower()
Ejemplo 4: python – convertir a minúsculas
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))
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)