“Igual ignorar casos python” 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

Igual ignorar casos python

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

Respostas semelhantes a “Igual ignorar casos python”

Perguntas semelhantes a “Igual ignorar casos python”

Mais respostas relacionadas para “Igual ignorar casos python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código