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