python
刘老溪
菜鸟测试工程师一只,持续学习中。。。。
展开
-
Python Tkinter库初体验_02_Button
# noinspection PyUnresolvedReferences from tkinter import * root=Tk() def hellobutton(): print('hello button') #通过点击来执行绑定方法,打印hello # Button(root,text='hello!!',command=hellobutton).pack() # r...原创 2019-11-05 11:40:47 · 183 阅读 · 0 评论 -
Python Tkinter库初体验_01_Label
# noinspection PyUnresolvedReferences from tkinter import * root=Tk() #创建label # label=Label(root,text='hello') # label.pack() # root.mainloop() #打印到标题 # root.title('hello') # root.mainloop() #使用...原创 2019-11-05 11:39:40 · 369 阅读 · 0 评论 -
python文件打包成exe
确定python版本,3.7以下 2.7以上 1.pip install pyinstaller 2.安装完去当前使用的python版本目录的 script目录,这里面有pyinstaller模块 3.把py文件或者 pyx文件放到这个目录 4.打开cmd 执行 pyinstaller -F -w xxx.py 5.执行完会出来个dict文件夹,exe文件在里面 注意: 1.如果需要不显示cmd...原创 2019-10-31 14:37:10 · 177 阅读 · 0 评论