python 转换为字符串类型
要将Python中的变量转换为字符串类型,可以使用str()函数或者字符串的format()方法。
使用str()函数:
num = 10
string = str(num)
print(string) # 输出"10"
使用字符串的format()方法:
num = 10
string = "{}".format(num)
print(string) # 输出"10"
此外,Python中的每个对象都有一个__str__()方法,可以通过调用该方法来获取对象的字符串表示。例如:
class MyClass:
def __str__(self):
return "This is an instance of MyClass"
obj = MyClass()
string = str(obj)
print(string) # 输出"This is an instance of MyClass"
原文地址: https://www.cveoy.top/t/topic/icNz 著作权归作者所有。请勿转载和采集!