随笔分类 - python基础知识
python基础知识学习笔记分享
摘要:步骤: 明确需求 编写框架代码 编写功能代码 改进 工具: trace unittest pychecker/pylint profile/timeit 工具说明: trace: https://learnku.com/docs/pymotw/trace-follow-program-flow/34
阅读全文
摘要:使用软件 PyInstaller(http://www.pyinstaller.org) 安装方法 执行命令 附录 详细的pyinstaller使用手册:https://pyinstaller.readthedocs.io/en/stable/
阅读全文
摘要:切片 list_name[start_position:end_position:step] 例: numbers = [1,2,3,4,5] numbers[0:5] == numbers[0:] == numbers[:] == numbers numbers[::-1] #=> 5,4,3,2
阅读全文

浙公网安备 33010602011771号