从用户那里获取文件
file = input("Please enter the data file you wish to open: ")
从用户那里获取搜索值
value = int(input("Input a number to search for: "))
打开文件
datlist = open(file, "rb")
读取文件中的行
FileNums = datlist.read().splitlines()
关闭文件
datlist.close()