赞
踩
可以使用 Python 的内置函数 int() 或 float() 将文本转换为数字。例如:
text = "123"number = int(text)print(number) # 输出 123