gpt4 book ai didi

python - 如何解析带有分数的字符串以获取 '/'两边的数字

转载 作者:行者123 更新时间:2023-12-01 06:53:36 25 4
gpt4 key购买 nike

我正在尝试解析Python中的一个字符串,其中包含一个分数,我需要将分数两边的数字存储为不同的变量。它适用于两侧的单个数字,但当有两位数时,我只得到一个数字的“/”符号,并且仅得到第二部分的第一个数字。输入文件如下所示:

product/productId: B001EO5QW8
review/userId: AOVROBZ8BNTP7
review/profileName: S. Potter
**review/helpfulness: 19/19**
review/score: 4.0

我的代码如下所示:

if 'review/helpfulness' in line:
helpline = line.rstrip().split(': ')[1:]
number_voted = helpline[0][0]
number_rated = helpline[0][2]

我得到这个答案:

NumHelpfulVotes         NumVotes
1 /

最佳答案

一种解决方案是用斜杠进一步分割:

numbers = line.split(':')[1].strip().split("/")
# ['19', '19']

另一种解决方案是使用正则表达式搜索:

import re 
numbers = re.findall("(\d+)/(\d+)", line)[0]
#('19', '19')

关于python - 如何解析带有分数的字符串以获取 '/'两边的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58896987/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com