对象有类型,变量无类型
python中一切数据都是对象
python中一切变量都是对数据对象的引用
python内部的查看引用计数方法sys.getrefcount()
python的数据类型是在给变量赋值的时候确定的
print 实际调用的是 sys.stout.write() 加换行
raw_imput 相当于 sys.stdin.readline()[:-1] [:-1] 的作用是去掉最后的换行
三个必会帮助自学的build-in方法 type,help,dir
python 解释器是运行python程序的程序
python源代码 .py结尾
python字节码 .pyc结尾 将程序编译后得到的底层形式
pvm python虚拟机