2023年10月29日
摘要: 整理文件夹不小心把整个开发目录都给清掉了。。。 我恨 阅读全文
posted @ 2023-10-29 00:50 讲道理好嘛 阅读(2) 评论(0) 推荐(0) 编辑
摘要: GPT狗玩意儿除了喊我更新pyqt5,卸载pyqt5,安装pyqt-tools,解决pyqt5版本不兼容的问题之外 他就不能说一句?请你输入命令:pip install pyqt3d 尼玛pyqt5到底是不是自带QT3D的文件啊我很费解 算了不重要,搞了我5个销售,最后考试靠猜的才终于把QT3D给装 阅读全文
posted @ 2023-10-29 00:48 讲道理好嘛 阅读(38) 评论(0) 推荐(0) 编辑
  2022年12月6日
摘要: python excel使用 https://blog.csdn.net/m0_59235508/article/details/122808875 pandas不覆盖写入 https://blog.csdn.net/HJ_xing/article/details/112390297 读取指定列 h 阅读全文
posted @ 2022-12-06 17:20 讲道理好嘛 阅读(6) 评论(0) 推荐(0) 编辑
  2022年10月3日
摘要: cmd里装,弹提示Requirement already satisfied pip install --target=F:\Python37\lib ttkbootstrap https://blog.csdn.net/weixin_45043549/article/details/1043717 阅读全文
posted @ 2022-10-03 03:13 讲道理好嘛 阅读(21) 评论(0) 推荐(0) 编辑
  2022年7月23日
摘要: 原博: https://blog.csdn.net/qq_44588905/article/details/113783373 更换 pip 源自国内镜像,在 pip install 后面添加 -i https://pypi.tuna.tsinghua.edu.cn/simple ,然后在后面加上所 阅读全文
posted @ 2022-07-23 23:17 讲道理好嘛 阅读(359) 评论(0) 推荐(0) 编辑
  2021年8月9日
摘要: 野餐用品计数 之前写过一段,字符在字符串中出现次数的代码 import pprint message = 'It was a bright cold day in April, ' \ 'and the clocks were striking thirteen.' count = {} for c 阅读全文
posted @ 2021-08-09 00:24 讲道理好嘛 阅读(267) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/k7arm/article/details/81168416 https://www.jianshu.com/p/aa9c67fcc407 阅读全文
posted @ 2021-08-09 00:24 讲道理好嘛 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 项目要求:编写一个名为 printTable()的函数,它接受字符串的列表的列表,将它显示在组织良好的表格中,每列右对齐。 tableData = [['apples', 'oranges', 'cherries', 'banana'],['Alice', 'Bob', 'Carol', 'Davi 阅读全文
posted @ 2021-08-09 00:24 讲道理好嘛 阅读(57) 评论(0) 推荐(0) 编辑
摘要: #! python3 import sys import pyperclip PASSWORDS = {'email': 'F7minlBDDuvMJuxESSKHFhTxFtjVB6', 'blog': 'VmALvQyKAxiVH5G8v01if1MLZF3sdt', 'luggage': '1 阅读全文
posted @ 2021-08-09 00:23 讲道理好嘛 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 井字游戏 theBoard = {'top-L': " ", 'top-M': " ", 'top-R': " ", 'mid-L': " ", 'mid-M': " ", 'mid-R': " ", 'low-L': " ", 'low-M': " ", 'low-R': " &qu 阅读全文
posted @ 2021-08-09 00:22 讲道理好嘛 阅读(64) 评论(0) 推荐(0) 编辑