當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Object轉String用法及代碼示例


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))

輸出:

6
<class 'str'>
6.0
<class 'str'>

範例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() vs repr()




相關用法


注:本文由純淨天空篩選整理自deepanshumehra1410大神的英文原創作品 Convert Object to String in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。