我有一个字符串,我想查找并替换其中的一些数字。即,其中有多个重复的“v = 324\n”,具有不同的值。现在我想将所有这些数字除以n
(四舍五入到最接近的整数)并将其保存为新字符串。
目前我正在使用解析包:
n = 10
s = "this is v = 2342\n and another v = 231\n and some stuff..."
for r in findall("v = {:d}\\n", s):
print r
这给了我结果列表,但我不知道如何更改字符串。我该怎么做?