-4
有人能告訴我我的代碼出了什麼問題。我是一個小菜鳥,也是編程的新手。Python代碼 - 「FileNotFoundError」
myFile = open('example2.txt', 'rt')
total=0.0
count=1
for line in myFile:
total=total+float(line)
count=count+1
print("reading in:"+line,end='')
average=total/count
print("\n\nAverage: "+str(average))
更多的信息不會傷害,你想要做什麼?你遇到什麼問題? etc – 2014-12-07 16:20:11
請發佈回溯 – nishparadox 2014-12-07 16:21:23
@JohnKugelman噢耶?你知道的越多; P – HarryCBurn 2014-12-07 16:23:56