Python脚本

【Python脚本】创建py文件,编写脚本内容

#!/usr/bin/env pythonprint("hello")

保存文件,并执行
发现说文件是不可执行文件,然后添加文件为可执行文件
chmod +x 文件名.py
执行文件 ./文件名.py

    推荐阅读