我想在 Python 中将整数转换为字符串。我徒劳地打字:
d = 15 d.str()
当我尝试将其转换为字符串时,它显示一个错误,例如int没有任何名为str.
int
str
>>> str(10) '10' >>> int('10') 10
文档链接:
int()
str()
转换为字符串是使用内置str()函数完成的,该函数基本上调用__str__()其参数的方法。
__str__()