gpt4 book ai didi

python - 从字符串中提取某些整数,然后对其进行归一化

转载 作者:太空宇宙 更新时间:2023-11-04 11:18:33 25 4
gpt4 key购买 nike

<分区>

我希望规范化字符串中的整数。示例:

string = ["There is a discount of 45% on the sales in the shopping mall", "60percent discount will be given to any purchase made"]

我想知道这是否可行。

a = []
for x in string:
xsplit = x.split()
for xx in xsplit:
if xx.isdigit():
newxx = xx/100
a.append(newxx)

我上面的代码非常昂贵而且循环太多。我希望找到一种方法来实现我的预期输出,同时保持更短的代码。这可能吗?我会在这里不断更新我的新测试代码。请帮助我。

我收到错误:

unsupported operand type(s) for /: 'str' and 'int'

我的预期输出应该是:

[0.45, 0.6]

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