python 之 subprocesss 模块、configparser 模块

2019-07-24 09:07:35来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

6.18 subprocesss 模块

常用dos命令:

cd : changedirectory 切换目录
?
tasklist:查看任务列表
?
tasklist | findstr python :查看任务列表并筛选出python任务的信息
# python.exe                   12360 Console                    1     11,024 K
?
/?:查看命令使用方法
?
taskkill :利用PID结束任务
# D:\code>taskkill /F /PID 12360
View Code

linux系统(了解):

ps aux | grep python
kill -9 PID     #-9表示强制结束任务
import subprocess
obj=subprocess.Popen('dir',
                     shell=True,
                     stdout=subprocess.PIPE,    #正确管道
                     stderr=subprocess.PIPE     #错误管道
                     )
?
print(obj)  #<subprocess.Popen object at 0x000001F06771A3C8>
?
res1=obj.stdout.read()  #读取正确管道内容
print('正确结果1: ',res1.decode('gbk'))
?
res2=obj.stdout.read()
print('正确结果2: ',res2.decode('gbk')) #只能取一次,取走了就空了
?
res3=obj.stderr.read()  #读取错误管道内容
print('错误结果:',res3.decode('gbk'))
View Code

6.19 configparser 模块

my.ini文件:

[egon]
age=18
pwd=123
sex=male
salary=5.1
is_beatifull=True
?
[lsb]
age=30
pwd=123456
sex=female
salary=4.111
is_beatifull=Falase
import configparser
?
config=configparser.ConfigParser()
config.read('my.ini')
?
secs=config.sections()
print(secs)                         #['egon', 'lsb']
?
print(config.options('egon'))         #['age', 'pwd', 'sex', 'salary', 'is_beatifull']
?
age=config.get('egon','age')            #18 <class 'str'>
age=config.getint('egon','age')         #18 <class 'int'>
print(age,type(age))
?
salary=config.getfloat('egon','salary')
print(salary,type(salary))              #5.1 <class 'float'>
?
b=config.getboolean('egon','is_beatifull')
print(b,type(b))                       #True <class 'bool'>
View Code

 


原文链接:https://www.cnblogs.com/mylu/p/11099893.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:python 之 面向对象基础(定义类、创建对象,名称空间)

下一篇:多线性方程组迭代算法——Jacobi迭代算法的Python实现