首页 > 代码库 > 002-python基础-hello-world

002-python基础-hello-world

  1. python hello.py 时,明确的指出 hello.py 脚本由 python 解释器来执行。
  2. 如果想要类似于执行shell脚本一样执行python脚本,例: ./hello.py ,那么就需要在 hello.py 文件的头部指定解释器,如:
    1 #!/usr/bin/env python
    2 print "hello,world"
    3 # 备注:执行前需给予 hello.py 执行权限,chmod 755 hello.py
  3. 除了把程序写在文件里,还可以直接调用python自带的交互器运行代码。(不建议)

002-python基础-hello-world