网址:https://docs.python.org/3/
虽然学习官方文档有些耗时,不过看最原版的还是感觉好一点,原汁原味没有曲解没有省略。
- 从命令行向Python传递参数,运行:python - abc def
import sys sys.argv
在命令行下的显示结果:['-','abc','def']
- 在命令行中运行python,_ 变量会保存上一次运行的结果
>>> tax = 12.5 / 100 >>> price = 100.50 >>> price * tax 12.5625 >>> price + _ 113.0625 >>> round(_, 2) 113.06
- 编码声明(没有声明默认是UTF-8)
# -*- coding:gb2312 -*-
- 下次接着看:https://docs.python.org/3/tutorial/introduction.html