摘要: 代码1 注意join的位置 import threading import time print('程序开始时间:', time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(int(time.time())))) start = time.time() 阅读全文
posted @ 2022-05-08 23:09 孤舟浮岸 阅读(181) 评论(0) 推荐(0)
摘要: import threading import time list = [chr(i) for i in range(ord('a'), ord('z') + 1)] + [chr(i) for i in range(ord('0'), ord('9') + 1)] + ['_'] print('程 阅读全文
posted @ 2022-05-08 22:16 孤舟浮岸 阅读(51) 评论(0) 推荐(0)
摘要: 莫烦yyds : https://www.bilibili.com/video/BV1jW411Y7Wj demo1 import threading def thread_1(): print("a") print(threading.current_thread()) def main(): t 阅读全文
posted @ 2022-05-08 19:23 孤舟浮岸 阅读(32) 评论(0) 推荐(0)
摘要: 先不考虑多线程 import time list = [chr(i) for i in range(ord('a'), ord('z') + 1)] + [chr(i) for i in range(ord('0'), ord('9') + 1)] + ['_'] print('程序开始时间:', 阅读全文
posted @ 2022-05-08 18:44 孤舟浮岸 阅读(114) 评论(0) 推荐(0)
摘要: loginWindow.py import wx from loginDAO import loginDAO dao = loginDAO() class MyFrame(wx.Frame): def __init__(self, parent, id): wx.Frame.__init__(sel 阅读全文
posted @ 2022-05-08 18:14 孤舟浮岸 阅读(255) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/xuey/p/9277509.html 阅读全文
posted @ 2022-05-08 17:40 孤舟浮岸 阅读(16) 评论(0) 推荐(0)
摘要: pip安装时使用临时源 例如: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple wxPython 或 pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple wxPython 换 阅读全文
posted @ 2022-05-08 17:31 孤舟浮岸 阅读(531) 评论(0) 推荐(0)