Python学习笔记
主要资源
Official Python Document - Tutorial
#启动Python解释器Interpreter
python
#在shell中运行python命令
python -c “print 'Hello,world!'”
#在shell中运行python module
python -m <module>
- 参数传递(Argument Passing)
#sys.argv返回一个字符串的列表(a list of strings)
import sys
print sys.argv
- Source Code Encoding
#!/usr/bin/env python
# -*- coding: encoding/iso-8859-15/utf-8 -*-