http://www.cnblogs.com/vamei/archive/2012/05/28/2522677.html
1. print 可以打印
有时需要 (),有的版本不需要。
惯例hello world: print("hello world")
2. 脚本保存为 .py
1) 可以在linux环境下输入:
$python sample.py
2)在IDE环境下
在脚本编写界面,点击run module执行脚本
3. 变量不需要声明;
区分大小写吗?
4. 内置函数
type: 查看变量的类型
原文:http://www.cnblogs.com/skyEva/p/5363894.html