python打包和反编译一条龙
摘要:python打包和反编译 从py到exe 打包 安装Pyinstaller pip install pyinstaller //太慢可切源 pip install -i https://pypi.douban.com/simple/ pyinstaller #豆瓣源 pip install -i h
阅读全文
posted @ 2024-02-19 02:09
posted @ 2024-02-19 02:09
posted @ 2024-02-13 18:00
posted @ 2024-01-31 19:37
posted @ 2023-12-07 20:28
c = 0 for a in range(100,1000): for b in str(a): a1 = int(b) c =c+a1**3 if a == c: print(a) c = 0 输出结果为 153 370 371 407 使用for循环来取数字中的每一位,不过数字要先化为str格式
阅读全文
posted @ 2023-09-18 09:49