Python shlex ??????
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python shlex ??????相关的知识,希望对你有一定的参考价值。
??????????????? 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 ??????的主要内容,如果未能解决你的问题,请参考以下文章