码迷,mamicode.com
首页 > 编程语言 > 详细

Python脚本在Linux上怎么运行

时间:2015-03-05 14:49:56      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

[root@qiansw tmp]# cat test.py         #这是一个python示例程序

1
2
3
#!/usr/bin/python
for in range(0,5):
    print i

[root@qiansw tmp]# ll

total 48

-rw-r--r-- 1 root root     48 Oct 30 11:04 test.py

[root@qiansw tmp]# chmod +x test.py    #为脚本增加执行权限

[root@qiansw tmp]# ./test.py                 #这是第一种方法

0

1

2

3

4

[root@qiansw tmp]# python test.py        #这是第二种方法,不用增加执行权限

0

1

2

3

4

Python脚本在Linux上怎么运行

标签:

原文地址:http://blog.csdn.net/u014082714/article/details/44081665

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!