1 Star 0 Fork 14

Joe/ant-learn-python-100P

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
p033_re_search_prices.py 450 Bytes
一键复制 编辑 原始数据 按行查看 历史
cztps2 提交于 2021-05-27 22:27 . xx
content = """
小明上街买菜
买了1斤黄瓜花了8元;
买了2斤葡萄花了13.5元;
买了3斤白菜花了5.4元;
"""
# 要求提取(1、黄瓜、8)、(2、葡萄、13.5)、(3、白菜、5.4)
import re
for line in content.split("\n"):
pattern = r"(\d)斤(.*)花了(\d+(\.\d+)?)元"
match = re.search(pattern, line)
if match:
print(f"{match.group(1)}\t{match.group(2)}\t{match.group(3)}")
# print(match.groups())
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/stayhungry2022/ant-learn-python-100P.git
[email protected]:stayhungry2022/ant-learn-python-100P.git
stayhungry2022
ant-learn-python-100P
ant-learn-python-100P
master

搜索帮助