标签:style 脚本 pre copy form format lang 解释 文件的
Python中的代码可以由两种方式执行:
1、直接在Python环境中执行:
1 LangYingdeMBP:bin langying$ python //python 环境 2 Python 2.7.10 (default, Feb 7 2017, 00:08:15) 3 [GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.34)] on darwin 4 Type "help", "copyright", "credits" or "license" for more information. 5 >>> print ‘hello world‘ 6 hello world
2、写一个Python文件然后执行:
LangYingdeMBP:~ langying$ python Desktop/h.py hello,world
但是这两种方式都需要我们明确指出文件是由Python解释器来执行。
如果想要类似于执行shell脚本一样执行Python脚本,那么就需要在h.py文件的头部制定解释器,如下:
1 #!/usr/bin/env python 2 print ‘hello world‘
如此以来,直接执行
./h.py
即可。
执行前需给予h.py执行权限,chmod 755 h.py
标签:style 脚本 pre copy form format lang 解释 文件的
原文地址:http://www.cnblogs.com/LYliangying/p/7570696.html