- 使用vim编辑代码:
1 #!/usr/bin/python2.7 2 #-*-coding:utf-8-*- 3 name = raw_input('请输入你的名字:') 4 print 'Hello,',name
直接运行hello.py:
$chmod a+x hello.py
./hello.py
或者 python hello.py
2.命令交互模式
输入python
退出exit()
1 #!/usr/bin/python2.7 2 #-*-coding:utf-8-*- 3 name = raw_input('请输入你的名字:') 4 print 'Hello,',name
直接运行hello.py:
$chmod a+x hello.py
./hello.py
或者 python hello.py
2.命令交互模式
输入python
退出exit()