摘要: def binary_to_decimal(binary_str): return int(binary_str, 2) def octal_to_decimal(octal_str): return int(octal_str, 8) def decimal_to_decimal(decimal_ 阅读全文
posted @ 2024-09-29 14:14 jarico 阅读(19) 评论(0) 推荐(0)
摘要: python 使用 pyinstaller 打包 1、下载pyinstaller pip install pyinstaller 2、在当前目录下生成 .spec 文件 注意,这行命令在生成文件的时候,也打包了输出物 pyinstaller --name=pytasker main.py --one 阅读全文
posted @ 2024-09-29 11:40 jarico 阅读(222) 评论(0) 推荐(0)