String de Python superior()

El método upper() convierte todos los caracteres en minúsculas de una string en caracteres en mayúsculas y los devuelve

Sintaxis:

string.upper()

Parámetros:

El upper()método no toma ningún parámetro.

Devoluciones :

returns a uppercased string of the given string

CÓDIGO 1: String con solo caracteres alfabéticos

# Python3 program to show the
# working of upper() function
text = 'geeKs For geEkS'
  
print("Original String:")
print(text)
  
# upper() function to convert 
# string to upper_case
print("\nConverted String:")
print(text.upper())

Producción :

Original String:
geeKs For geEkS

Converted String:
GEEKS FOR GEEKS

CÓDIGO 2: String con caracteres alfanuméricos

# Python3 program to show the
# working of upper() function
text = 'g3Ek5 f0r gE3K5'
  
print("Original String:")
print(text)
  
# upper() function to convert 
# string to upper_case
print("\nConverted String:")
print(text.upper())

Producción :

Original String:
g3Ek5 f0r gE3K5

Converted String:
G3EK5 F0R GE3K5

Aplicación: una de las aplicaciones comunes del método upper() es verificar si las dos strings son iguales o no

# Python3 program to show the
# working of upper() function
text1 = 'geeks fOr geeks'
  
text2 = 'gEeKS fOR GeeKs'
  
# Comparison of strings using 
# upper() method
if(text1.upper() == text2.upper()):
    print("Strings are same")
else: 
    print("Strings are not same")

Producción:

Strings are same

Publicación traducida automáticamente

Artículo escrito por Akanksha_Rai y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *