标签:一点 div col vim bin span vim编辑 term idt
Python2:
开启一个terminal,输入下面命令:
yshuangj@ubuntu:~$ vim helloA.py
在vim编辑器中,进入编辑模式(按i),输入下面的代码,然后退出编辑模式(按esc),保存文件(先按shift+ 分号,然后按wq保存退出)
1 #!/usr/bin/python 2 2 3 3 print "hello python2" 4 4 print 5/2
然后更改文件可执行权限
yshuangj@ubuntu:~$ chmod +x helloA.py
然后就可以放心的执行helloA.py, 就像执行其它命令一样
Python3:
采用类似的步骤,我们可以输入下面的类似的代码
1 #!/usr/bin/python3 2 3 print("hello python3") 4 print(5/2)
执行结果如下:
总结, python代码中第一行, 以#!开头,叫shebang,指向了一个脚本解析器,这和写shell脚本是一致的,有了这一行,我们就可以把脚本当作一个命令来使用。
看懂shebang吧,只需一点点shell知识,从此再也不犯强迫症
标签:一点 div col vim bin span vim编辑 term idt
原文地址:http://www.cnblogs.com/yshuangj/p/7940485.html