Python3 dictionary.str()方法

2019-10-16 23:05:38
str()方法將產生一個字典可列印的字串表示。

語法

以下是 str() 方法的語法-
str(dict)

引數

  • dict -- 這是一個字典

返回值

此方法返回字典的字串表示。

字典

下面的範例演示 str() 方法的使用。
#!/usr/bin/python3

dict = {'Name': 'Manni', 'Age': 7, 'Class': 'First'}
print ("Equivalent String : %s" % str (dict))
當我們執行上面的程式,會產生以下結果 -
Equivalent String : {'Name': 'Manni', 'Age': 7, 'Class': 'First'}