摘要: from tkinter import * def write_to_file(): fileContent = open("deliveries.txt","a") fileContent.write(depot.get()+"\n") fileContent.write(description.get()+"\n") fileContent.write(ad... 阅读全文
posted @ 2017-08-22 23:05 aWolfMan 阅读(770) 评论(0) 推荐(0) 编辑