红联Linux门户
Linux帮助

Ubuntu编写与运行python程序

发布时间:2017-01-08 10:55:03来源:linux网站作者:阳光下的Smiles
1、使用VIM编辑器
目前,没找到比较好的集成开发工具,就用Vim开发python。一般Ubuntu系统不带vim要自己安装。如我用的Ubuntu14.04就没有vim.
VIM安装命令:$sudo apt-get install vim-gtk
 
2、程序编写
脚本语言的第一行一般都会写上#!/usr/bin/env python或者#!/usr/bin/python。
#!/usr/bin/env python或者#!/usr/bin/python的区别主要是指出用什么可执行程序去运行程序。
#!/usr/bin/python 是一般默认的python解释器的路径, 所以这种的就是装在默认位置的不会出问题。
#!/usr/bin/env python 则更加通用一些,会去你的PATH 中寻找python 。
推荐使用:#!/usr/bin/env python 
 
3、运行方式
python test.py
./test.py
 
实例
1、hello.py中代码:
print 'Hello,Welcome to linux python'
(1)使用python hello.py方式运行,可以正常运行。
Ubuntu编写与运行python程序
(2)./hello.py方式运行出错。
Ubuntu编写与运行python程序
 
2、hello.py中代码:
#!/usr/bin/env python
print 'Hello,Welcome to linux python'
print 'test...'
(1)使用python hello.py方式运行,可以正常运行。
Ubuntu编写与运行python程序
(2)./hello.py方式运行出错。
Ubuntu编写与运行python程序
 
3、hello.py中代码:
#!/usr/bin/python
print 'Hello,Welcome to linux python'
print 'waiting...'
(1)使用python hello.py方式运行,可以正常运行。
Ubuntu编写与运行python程序
(2)./hello.py方式运行出错。
Ubuntu编写与运行python程序
 
本文永久更新地址:http://www.linuxdiyf.com/linux/27631.html