在Python中将对象转换为字符串
Python定义了类型转换函数来直接将一种数据类型转换为另一种数据类型。本文旨在提供有关将对象转换为字符串的信息。
将对象转换为字符串
Python中的一切都是对象。因此,所有内置对象都可以使用 str() 和 repr() 方法转换为字符串。
示例 1:使用 str() 方法
Python3
# object of int
Int = 6
# object of float
Float = 6.0
# Converting to string
s1 = str(Int)
print(s1)
print(type(s1))
s2= str(Float)
print(s2)
print(type(s2))
Python3
print(repr({"a": 1, "b": 2}))
print(repr([1, 2, 3]))
# Custom class
class C():
def __repr__(self):
return "This is class C"
# Converting custom object to
# string
print(repr(C()))
输出:
6
6.0
示例 2:使用 repr() 将对象转换为字符串
Python3
print(repr({"a": 1, "b": 2}))
print(repr([1, 2, 3]))
# Custom class
class C():
def __repr__(self):
return "This is class C"
# Converting custom object to
# string
print(repr(C()))
输出:
{'a': 1, 'b': 2}
[1, 2, 3]
This is class C
注意:要了解更多关于 str() 和 repr() 以及在Python中引用、str() 与 repr() 之间的区别