python
LED灯大师
嵌入式
展开
-
【python】pyqt5 信号与槽
举例说明信号与槽的关系实现功能:按下button关闭窗口方法一在QTdesigned 里面按快捷键F4,进入信号与槽编辑页面,鼠标左键按住button,拖动到button外,自动打开配置信号与槽连接配置页面,页面左边是信号,右边是槽,直接勾选即可。若右边没有可以自定义相关槽函数,但函数名不能是方法二中的名字。按照此方法生成的ui文件在转换成py文件之后会在代码中生成连接信息。为确保ui与业...原创 2020-04-25 20:53:31 · 651 阅读 · 0 评论 -
【python】pyqt5多继承与单继承界面封装方法
建议使用单继承方法Talk is cheap, show me the code多继承方法import sysfrom PyQt5.QtWidgets import QApplication, QMainWindowfrom demo import *import datetimeclass MyWindows(QMainWindow, Ui_mainWindow): d...原创 2020-04-25 03:02:44 · 2664 阅读 · 0 评论 -
【python】汉诺塔游戏
Talk is cheap, show me the codedef hanoi(n, a, b, c): if n == 1: print(a + ' --> ' + c) else: # 将n-1个盘子由a移动到b hanoi(n - 1, a, c, b) # 将a移动到c print(...原创 2020-04-25 02:46:23 · 310 阅读 · 0 评论 -
【python】文件夹操作以及文件读写
codeimport osimport shutil# 新建文件夹os.mkdir(str(os.getcwd()) + '/new dir', 0o777)# 改变当前工作路径os.chdir('./new dir')# 递归删除非空文件夹shutil.rmtree('./new dir')p_str = 'helloword'# 以append的方式打开文件,并返回文...原创 2020-04-25 02:41:52 · 145 阅读 · 0 评论 -
【python】datetime模块
import datetimeimport timenow_time = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S.%f")next_time = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())原创 2020-04-25 02:34:58 · 179 阅读 · 0 评论 -
Windows安装PyQt5
//cmd安装 sippip install sip//cmd安装PyQt5pip3 install --index-url https://pypi.douban.com/simple PyQt5//cmd安装pyqt5-toolspip3 install --index-url https://pypi.douban.com/simple pyqt5-tools//将qt路径加入P...原创 2020-04-22 09:51:48 · 277 阅读 · 0 评论