Dada una lista de strings, escriba un programa Python para convertir todas las strings de minúsculas/mayúsculas a mayúsculas/minúsculas.
Input : ['GeEk', 'FOR', 'gEEKS'] Output: ['geeks', 'for', 'geeks'] Input : ['fun', 'Foo', 'BaR'] Output: ['FUN', 'FOO', 'BAR']
Método #1: convertir mayúsculas a minúsculas usando map
la función
# Python code to convert all string # from uppercase to lowercase. # Using map function out = map(lambda x:x.lower(), ['GeEk', 'FOR', 'gEEKS']) # Converting it into list output = list(out) # printing output print(output)
Producción:
['geek', 'for', 'geeks']
Método n.º 2: convertir minúsculas a mayúsculas mediante la comprensión de listas
# Python code to convert all string # from uppercase to lowercase. # Initialisation input = ['fun', 'Foo', 'BaR'] # Converting lst = [x.upper() for x in input] # printing output print(lst)
Producción:
['FUN', 'FOO', 'BAR']
Publicación traducida automáticamente
Artículo escrito por everythingispossible y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA