标签:python linux hello 程序 world
linux系统上执行python程序
[root@python ~]# ll hello.py
-rwxr-xr-x. 1 root root 44 Oct 24 02:38 hello.py
[root@python ~]# cat hello.py
#!/usr/bin/env python
print("hello world")
[root@python ~]# ./hello.py
hello world
标签:python linux hello 程序 world
原文地址:http://11273036.blog.51cto.com/11263036/1864770