Python2:
开启一个terminal,输入下面命令:
[email protected]:~$ vim helloA.py
在vim编辑器中,进入编辑模式(按i),输入下面的代码,然后退出编辑模式(按esc),保存文件(先按shift+ 分号,然后按wq保存退出)
1 #!/usr/bin/python 2 2 3 3 print "hello python2" 4 4 print 5/2
然后更改文件可执行权限
[email protected]:~$ chmod +x helloA.py
然后就可以放心的执行helloA.py, 就像执行其它命令一样
Python3:
采用类似的步骤,我们可以输入下面的类似的代码
1 #!/usr/bin/python3 2 3 print("hello python3") 4 print(5/2)
执行结果如下:
总结, python代码中第一行, 以#!开头,叫shebang,指向了一个脚本解析器,这和写shell脚本是一致的,有了这一行,我们就可以把脚本当作一个命令来使用。
时间: 2024-10-28 21:55:55