今天正式开始学习python,先写一个最今经典的例子 helloword
#!/usr/bin/python3.2 print("hello work!")
知识点:
#!usr/bin/python3.2
我们知道python有两种执行方式
1.用python 命令执行.py文件
python filename
如果你环境下有多个python版本,可以选择
python3.2 filename
2.给你的.py文件添加权限(chmod a+x filename),利用./filename 执行
这时候就是#!usr/bin/python 发挥作用的时候了。它是告知系统,去这个目录下寻找运行这个.py文件的python,如果目录下没有相应的python,运行就会报错
bash: ./helloword.py: usr/ddd/python2.7: bad interpreter: No such file or directory
时间: 2024-11-29 12:11:45