使用python把一段文字里的float类型数字转化为str类型数字
时间: 2023-03-30 18:04:14 浏览: 127
Python3 使用map()批量的转换数据类型,如str转float的实现
你可以使用正则表达式来匹配文本中的浮点数,然后使用str()函数将其转换为字符串类型。下面是一个示例代码:
import re
text = "这是一段包含浮点数的文本,比如3.14和2.718。"
pattern = r'\d+\.\d+'
matches = re.findall(pattern, text)
for match in matches:
text = text.replace(match, str(match))
print(text)
输出结果为:"这是一段包含浮点数的文本,比如3.14和2.718。"
阅读全文