1 2 Fork me on GitHub 6
摘要: import re text='''Apple-1 orange-2''' result1=re.findall(r'apple',text) print('result1:',result1) # result1: [] # re.I 大小写不敏感 result2 = re.findall(r'a 阅读全文
posted @ 2022-04-14 14:27 peng_li 阅读(318) 评论(0) 推荐(0) 编辑
1