1
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)

该代码工作正常,但我不知道如何使字符搜索不区分大小写。

4

2 回答 2

3

查看.lower字符串方法。您可以确保x小写以及file.read()使用它的输出。

于 2012-10-23T21:05:20.997 回答
0

a_string = file.read().lower().count(x.lower())

于 2012-10-23T21:05:59.757 回答