我在我的程序中合并的文件充满了数字列表。我必须将该文件转换为整数以显示平均值。
import os.path
def main():
try:
filename = input("name of the file: ")
print(os.path.abspath(filename))
except IOError:
print("File not found")
except ValueError:
print("Cannot convert into an integer")
main()