摘要: 示例一: import re strTest = '美通卡支付9.5折' contentValue = re.findall(r"\d+\.?\d*", strTest) print(contentValue) ['9.5'] print(type(contentValue)) <class 'li 阅读全文
posted @ 2021-05-10 09:22 我是一只小小小小鸟~ 阅读(75) 评论(0) 推荐(0) 编辑