10 2019 档案

摘要:1、pyinstaller生成EXE文件时产生的错误 RecursionError: maximum recursion depth exceeded python默认的递归深度是很有限的(默认是1000),因此当递归深度超过999的样子,就会引发这样的一个异常。 解决方法: 在xxx.spec文件 阅读全文
posted @ 2019-10-23 15:51 云中虾 阅读(545) 评论(0) 推荐(0)
摘要:from PyQt5.QtCore import * from PyQt5.QtGui import * from PyQt5.QtWidgets import * from math import * import sys class GaugePanel(QWidget): def __init__(self): super().__init__() self.setWindowTitle(" 阅读全文
posted @ 2019-10-12 17:16 云中虾 阅读(4572) 评论(0) 推荐(0)