1 from tkinter import * 2 3 root = Tk() 4 text = Text(root,width=20,height=15) 5 text.pack() 6 text.insert(INSERT,"Python3 \n") #INSERT索引 ...
確定! 回上一頁