我正在尝试运行一个打开几个画布窗口的 Python 代码,但我不知道该怎么做......只打开一个窗口看起来像我下面的代码......如果我想放为了打开几个独立的窗口,这个代码在 for cicle 中......我该怎么做?
谢谢你的帮助
from tkinter import *
root = Tk()
root.title("First Graph")
root.resizable(0,0)
points = []
f1 = Canvas(root, bg="white", width=300, height= 300)
f1.bind("<Motion>", callback)
f1.configure(cursor="crosshair")
f1.pack()
f1.bind("<Button-1>", point)
f1.bind("<Button-3>", graph)
root.mainloop()