python的执行方式
1、使用python命令执行
(1)在linux下创建一个文件hello.py文件,并输入
print("Hello World!")
(2)然后执行命令:python hello.py,输出结果
[[email protected] ~]# vim hello.py
[[email protected] ~]# cat hello.py
print("Hello World!")
[[email protected] ~]# python hello.py
Hello World!
[[email protected] ~]#
2、指定解释器执行
(1)第一步中我们执行hello.py的时候,明确指出了由python解释器来执行
(2)那么我们想要类似执行shell脚本那样执行python脚本的话,就需要在脚本中指定解释器了:./hello.py
[[email protected] ~]# vim hello.py
[[email protected] ~]# cat hello.py
#!/usr/bin/env pythn
print("Hello World!")
[[email protected] ~]# chmod +x hello.py #赋予脚本执行权限
[[email protected] ~]# vim hello.py
[[email protected] ~]# ./hello.py
Hello World!
[[email protected] ~]#
3、在交互器中执行
(1)我们可以直接调用python自带的交互器运行代码
[[email protected] ~]# python
Python 2.6.6 (r266:84292, Aug 18 2016, 15:13:37)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-17)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> print("Hello World!")
Hello World!
>>> exit()
[[email protected] ~]#