欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

linux下最简单的可执行python文件

程序员文章站 2022-06-24 08:31:06
linux命令行下 hello.py文件中插入如下代码: 执行:./hello.py 即可。 ps:执行前要给予hello.py执行权限,chmod 755 hello.py ......

linux命令行下

vim hello.py

 

hello.py文件中插入如下代码:

#!/use/bin/env python

print("hello,World")

执行:./hello.py 即可。

ps:执行前要给予hello.py执行权限,chmod 755 hello.py