标签:
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()
标签:
原文地址:http://www.cnblogs.com/cpsmile/p/4966200.html