2014-10-02 77 views
1

我需要在單個def中創建一個程序,打開一個文本文件「成績」,其中第一個,最後一個和成績由逗號分隔。每一行都是一個單獨的學生。然後顯示學生和成績以及班級平均水平。然後繼續添加另一個學生並將其保存到文本文件中,同時包括舊學生。 我想我只是不明白python通過文本文件的方式。如果我將'行'註釋掉,我會看到它會打印old_names,但它好像一切都沒有了。當行沒有被註釋掉'old_names'沒有被打印,這讓我認爲文件被關閉了?還是空的?但是一切仍然在txt文件中,因爲它應該是。文本文件讀寫ValueError:需要超過1個值才能打包

目前我得到這個錯誤....這一點我敢肯定,告訴我,我是弱智有在「行」沒有信息

File "D:\Dropbox\Dropbox\1Python\Batch Processinga\grades.py", line 45, in main 
    first_name[i], last_name[i], grades[i] = line.split(',') 
ValueError: need more than 1 value to unpack 

最終目標是把它給我當前學生姓名和成績,平均分。然後添加一個學生,保存該學生和成績檔案。然後能夠將文件備份到所有學生,包括新的文件,然後重新執行。 我爲成爲一個結局而道歉。

def main(): 
    #Declare variables 
    #List of strings: first_name, last_name 
    first_name = [] 
    last_name = [] 
    #List of floats: grades 
    grades = [] 
    #Float grade_avg, new_grade 
    grade_avg = new_grade = 0.0 
    #string new_student 
    new_student = '' 


    #Intro 
    print("Program displays information from a text file to") 
    print("display student first name, last name, grade and") 
    print("class average then allows user to enter another") 
    print("student.\t") 

    #Open file 「grades.txt」 for reading 
    infile = open("grades.txt","r") 

    lines = infile.readlines() 

    old_names = infile.read() 
    print(old_names) 

    #Write for loop for each line creating a list 
    for i in len(lines): 
     #read in line 
     line = infile.readline() 

     #Split data 
     first_name[i], last_name[i], grades[i] = line.split(',') 

     #convert grades to floats 
     grades[i] = float(grades[i]) 

    print(first_name, last_name, grades) 
    #close the file 
    infile.close() 

    #perform calculations for average 
    grade_avg = float(sum(grades)/len(grades)) 


    #display results 
    print("Name\t\t Grade") 
    print("----------------------") 
    for n in range(5): 
     print(first_name[n], last_name[n], "\t", grades[n]) 

    print('') 
    print('Average Grade:\t% 0.1f'%grade_avg) 

    #Prompt user for input of new student and grade 
    new_student = input('Please enter the First and Last name of new student:\n').title() 
    new_grade = eval(input("Please enter {}'s grade:".format(new_student))) 

    #Write new student and grade to grades.txt in same format as other records 
    new_student = new_student.split() 
    new_student = str(new_student[1] + ',' + new_student[0] + ',' + str(new_grade)) 

    outfile = open("grades.txt","w") 

    print(old_names, new_student ,file=outfile) 

    outfile.close()enter code here 

回答

2

Python中的文件對象有一個「文件指針」,它跟蹤你已經從文件中讀取的數據。當您撥打readreadlinereadlines時,它會使用它來知道從哪裏開始尋找。調用readlines將文件指針一直移動到文件末尾;後續的讀取調用將返回一個空字符串。這就解釋了爲什麼你在line.split(',')行上得到ValueError。 line是一個空字符串,因此line.split(",")返回一個長度爲0的列表,但是您需要一個長度爲3的列表來完成您嘗試的三次分配。

一旦得到lines列表,您就不需要再與infile對象進行交互。你已經有了所有的線路;你可以直接迭代它們。

#Write for loop for each line creating a list 
for line in lines: 
    columns = line.split(",") 
    first_name.append(columns[0]) 
    last_name.append(columns[1]) 
    grades.append(float(columns[2])) 

請注意,我使用append代替listName[i] = whatever。這是必要的,因爲當您嘗試分配尚不存在的索引時,Python列表不會自動調整自己的大小;你只會得到一個IndexError。另一方面,append將根據需要調整列表的大小。

+0

謝謝您的解釋,我可能需要再讀幾遍,但我明白了。現在,如果我可以讓文件在文本文件中寫入old_names,他們是怎麼樣的,而不是像這樣...... ['Mickey,Mouse,90 \ n','Jane,Doe,50 \ n','Minnie ,Mouse,95 \ n','Donald,Duck,80 \ n','Daffy,Duck,70 \ n'] Lars,Olrich,69 – Krill 2014-10-03 00:49:21

+0

用.join()再次修復。 – Krill 2014-10-03 01:55:53

相關問題