摘要: 前提:安装好pyQT5后 打开pycharm-->file-->setting--> external tools,-->点+号新建: name: QTdesignerGroup: External Toolsprogram: 你的项目地址\venv\Lib\site-packages\PySide 阅读全文
posted @ 2022-10-29 16:54 CooperDavid 阅读(105) 评论(0) 推荐(0)
摘要: a = True b = False c = True if a: print(666) if c: print(777) if b: print(888) # 👆 依次判断abc是否为真 if a: print(666) elif b: print(777) elif c: print(888) 阅读全文
posted @ 2022-10-29 16:40 CooperDavid 阅读(55) 评论(0) 推荐(0)