码迷,mamicode.com
首页 > 其他好文 > 详细

Pyhton之subprocess模块和configparser模块

时间:2018-05-30 22:37:10      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:input   pre   popen   imp   strip()   als   ror   open   IV   

# import os
# while True:
#     cmd=input(‘>>‘).strip()
#     if not cmd:continue
#     if cmd==‘q‘:break
#     os.system(cmd)

import subprocess
obj=subprocess.Popen(‘dir‘,
                     shell=True,
                     stdout=subprocess.PIPE,
                     stderr=subprocess.PIPE
                     )
res1=obj.stdout.read()
res3=obj.stdout.read()
res2=obj.stderr.read()
print(‘right:‘,res1.decode(‘gbk‘))
print(‘error:‘,res2.decode(‘gbk‘))

print(‘res3:‘,res3.decode(‘gbk‘))

  configparser模块

import configparser

config=configparser.ConfigParser()
config.read(‘a.cfg‘,encoding=‘utf-8‘)


#删除整个标题section2
config.remove_section(‘section2‘)

#删除标题section1下的某个k1和k2
config.remove_option(‘section1‘,‘k1‘)
config.remove_option(‘section1‘,‘k2‘)

#判断是否存在某个标题
print(config.has_section(‘section1‘))

#判断标题section1下是否有user
print(config.has_option(‘section1‘,‘‘))


#添加一个标题
config.add_section(‘egon‘)

#在标题egon下添加name=egon,age=18的配置
config.set(‘egon‘,‘name‘,‘egon‘)
config.set(‘egon‘,‘age‘,18) #报错,必须是字符串


#最后将修改的内容写入文件,完成最终的修改
config.write(open(‘a.cfg‘,‘w‘))

  

Pyhton之subprocess模块和configparser模块

标签:input   pre   popen   imp   strip()   als   ror   open   IV   

原文地址:https://www.cnblogs.com/qiaoqianshitou/p/8783439.html

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