python的安装
python 的版本
1、python2.7版本和3.0版本
2、python2.7版本和3.0版本不兼容2.7版本是2.0的最终版本
python的运行环境:
windows Linux
打印hello word
python的用法
2.7的用法
python
>>> print 'hello word!'
3.0的用法
python
>>> print ('hello word!')
脚本书写格式
hello.py
#!/usr/bin/env python
print 'hello word !'
执行:
python hello.py
python的编写风格
hello.py
#!/usr/bin/env python
def man():
print aaa
print AAA
print bbb
python需要顶头写
第一个函数和第三个print没有任何关系
在第一个函数中python要求缩进必须相同一般是两个空格或者4个空格。所以第二个print是错误的
python的数据运算类型和运算符
1、python数据类型