Ejemplo 1: Python string match ignore case
if firstStr.lower() == secStr.lower():
print('Both Strings are same')
else:
print('Strings are not same')
Ejemplo 2: Python hace que la comparación no distinga entre mayúsculas y minúsculas
mystring = "Hello"
non_case_sensitive_string= mystring.casefold()
#this makes it non-case-sensitive.
#if you want to make it lowercase, use the following:
mystring = "Hello"
lowercase_mystring = mystring.lower()
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)