“Python Check String Case Insensitive” Respostas de código

Python String corresponde ao caso de ignorar

if firstStr.lower() == secStr.lower():
    print('Both Strings are same')
else:
    print('Strings are not same')
Xerothermic Xenomorph

Python Check String Case Insensitive

string1 = 'Hello'
string2 = 'hello'

if string1.casefold() == string2.casefold():
    print("The strings are the same (case insensitive)")
else:
    print("The strings are NOT the same (case insensitive)")
DreamCoder

Python Check String Case Insensitive

string1 = 'Hello'
string2 = 'hello'

if string1.lower() == string2.lower():
    print("The strings are the same (case insensitive)")
else:
    print("The strings are NOT the same (case insensitive)")
DreamCoder

Respostas semelhantes a “Python Check String Case Insensitive”

Perguntas semelhantes a “Python Check String Case Insensitive”

Mais respostas relacionadas para “Python Check String Case Insensitive” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código