摘要: from tkinter import *from tkinter import ttkimport time#画窗口root = Tk()root.geometry('1000x500')root.resizable(False, False)graph = Canvas(root, width=1000, height=550, background='black')#后面查点和删点的时候... 阅读全文
posted @ 2019-05-24 17:09 mghhz816 阅读(3152) 评论(0) 推荐(0) 编辑