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

python变量传递给系统命令的方法

时间:2016-01-06 06:48:05      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:

python程序内执行shell命令可以有几种方式,在http://www.cnblogs.com/xuxm2007/archive/2011/01/17/1937220.html 里都有详细介绍。

实际操作中经常遇到的情况是如何将变量输入到系统命令中。如下例所示:

      output=‘output.txt‘
ra = 10
dec = 111
filter_command = select infile=data.txt outfile=%s ra=%s dec=%s rad=10.0 tmax="INDEF" emin=100.0 evtype=3%(output,ra,dec) if os.system(filter_command) == 0: print successful filter , name else: print failed filter ,name

 

python变量传递给系统命令的方法

标签:

原文地址:http://www.cnblogs.com/heshangaichirou/p/5104282.html

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