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

Python shlex 模块

时间:2019-01-22 13:12:31      阅读:438      评论:0      收藏:0      [点我收藏+]

标签:函数   pop   lex   color   RoCE   style   split()   root   code   

shlex 模块最常用的是 split() 函数,用来分割字符串,通常与 subprocess 结合使用

In [1]: import shlex

In [2]: shlex.split(my name is tom)
Out[2]: [my, name, is, tom]
In [1]: import shlex, subprocess

In [2]: subprocess.Popen(shlex.split(ls -l /data))
总用量 0
-rw-r--r--. 1 root root 0 1月  22 12:09 1.txt
-rw-r--r--. 1 root root 0 1月  22 12:09 2.txt
-rw-r--r--. 1 root root 0 1月  22 12:09 3.txt

 

 

 

 

 

 

 

    

Python shlex 模块

标签:函数   pop   lex   color   RoCE   style   split()   root   code   

原文地址:https://www.cnblogs.com/pzk7788/p/10303135.html

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