摘要: import re s = ''' {"type":"buy","order_no":"2020061613141386691649969"} ''' ret = re.search(r'"type":"(.*?)"', s) print(ret.group()) print(ret.group(0 阅读全文
posted @ 2020-07-02 14:32 wujf 阅读(381) 评论(0) 推荐(0) 编辑