随笔分类 -  gui

Python GUI 编程
摘要:做一些实用小工具。1. tkinterhello worldfrom tkinter import Tk, Labelroot = Tk()label = Label(root, text="hello world")label.pack() # p... 阅读全文
posted @ 2017-12-15 21:50 未雨愁眸 阅读(165) 评论(0) 推荐(0)