x = input("Please enter the character you wish to search for:")
file = open("C:\\Users\\Murphy\\Desktop\\names.txt", "r")
a_string = file.read().count(x)
print(a_string)
コードは正常に機能しますが、文字検索で大文字と小文字を区別しないようにする方法がわかりません。
x = input("Please enter the character you wish to search for:")
file = open("C:\\Users\\Murphy\\Desktop\\names.txt", "r")
a_string = file.read().count(x)
print(a_string)
コードは正常に機能しますが、文字検索で大文字と小文字を区別しないようにする方法がわかりません。