拉链的学习记录

拉链在天善的学习记录,欢迎交流

1
推荐
1083
阅读

PyInstaller Python 打包工具

下载:https://github.com/pyinstaller/pyinstaller/PyInstaller bundles a Python application and all its dependencies into a single package. The user can run the packaged app without installing a Python interpreter or any modules.header 1 | header 2---|---Documentation: | http://pyinstaller.rtfd.io/...

发表了文章 • 2016-12-13 17:33 • 1 条评论

0
推荐
789
阅读

天善-Python数据分析与挖掘实战-day1-作业

作业:输出九九乘法表# coding:utf8 import platform print("操作系统:" + platform.system() + repr(platform.win32_ver())) print("python版本:" + platform.python_version()) for i in range(1, 10): a = "" for j in range(1, i+1): a = a + str(i) + "*" + str(j) + "=" + str(i * j) + "; " ...

发表了文章 • 2016-10-27 11:11 • 0 条评论