摘要: pip安装 # Ubuntu python3 sudo apt install python3-pip # Windows 升级pip python -m pip install -U pip 常用命令 # 库的安装与卸载 pip install requests pip uninstall req 阅读全文
posted @ 2019-11-19 22:13 rustling 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 官网文档: https://docs.python.org/3/ 基础语法 1. 注释 #!/usr/bin/env python3 # -*- coding: UTF-8 -*- # Python 3 源码文件默认以 UTF-8 编码 """多行注释""" # 单引号和双引号没有区别 2. 常用数 阅读全文
posted @ 2019-11-19 22:11 rustling 阅读(172) 评论(0) 推荐(0) 编辑