假设一个包含一系列整数的文件名为 numbers.txt 并且存在于计算机磁盘上。编写一个程序,计算文件中存储的所有数字的平均值。
我有一个文件名numbers_good.tx
t 保存在我的计算机上。当我在错误中键入它时,不会读取目录中的文件。
def main():
try:
filename=input("name of the file")
myfile=open(filename, "r")
except IOError:
print("File Error")
main()