Python - TypeError:参数必须有一个" Write"方法

时间:2017-09-09 02:50:29

标签: python csv

您好我的代码:

def update_thing():
        stud_ID = str(ID_num.get())
        stud_name = str(name.get())
        stud_course = str(Crs.get())
        stud_year = str(Yr.get())
        replace = stud_ID +','+ stud_name +','+ stud_course +','+ stud_year
        empty = []




        with open(file_op, 'wb') as fop:
            Swriter = csv.writer(file_op, delimiter=' ', quotechar='|', quoting=csv.QUOTE_MINIMAL)
            for row in fop:
                if row[0:9] == stud_ID:

                    Swriter.writerow([empty])
                    Swriter.writerow([replace])
                    msg = Label(upd_win, text="Updated Successful", font="fixedsys 12 bold").place(x=3,y=120)
                if not row[0:9] == getID:
                    msg1 = Label(upd_win, text="Updated Failed", font="fixedsys 12 bold").place(x=3,y=120)


        fop.close() 

此代码通过ID号替换它找到的行。因此,如果它找到了ID号,它会通过清空它并写入新输入的行来替换这些行。但是我遇到了线路上的错误问题

Swriter = csv.writer(file_op, delimiter=' ', quotechar='|', quoting=csv.QUOTE_MINIMAL)

它有一个错误:TypeError:参数必须有一个"写"方法。我真的不知道为什么我会这样做。

file_op 

是我从GUI中输入的值中获得的文件名。任何帮助都非常感谢。谢谢!

1 个答案:

答案 0 :(得分:1)

你打开" fop"文件,但试图写入" file_op"

你需要这样:

with open("your filename string", 'wb') as file_op:
            Swriter = csv.writer(file_op, delimiter=' ', quotechar='|', quoting=csv.QUOTE_MINIMAL)