摘要:
#coding=utf-8"""user:version:function:"""def phoneNumRegex(content,re_str): phone = re.compile(re_str) mo = phone.search(content) num = mo.group() ret 阅读全文
摘要:
import os import subprocess #import sys os.system('echo the first command&&echo the second command')#强制执行,无法获取返回结果 os.popen('cd C:\\Users\\XXX\\AppDat 阅读全文