我在做一個在線課程,當其中一個課程失去了我。也許我只是不記得它,但在下面的程序中「= 0」是什麼意思?我在筆記中找不到任何線索,導師也沒有在這裏解釋。在Python中,「= 0」是什麼意思?
**count = 0**
**total = 0**
inFile = open('grades.txt', 'r')
grade = inFile.readline()
while (grade):
print(grade)
count = count+1
total = total + int(grade)
grade = inFile.readline()
average = total/count
print("Average: " + str(average))
我覺得我忘記了一些根本的東西。
你是否自己添加這些明星?你在問'count = 0'是什麼意思? – rlbond
你應該閱讀一個基本教程http://anandology.com/python-practice-book/getting-started.html –