位置:首頁 > 腳本語言 > Python教學 > Python dict.str()方法

Python dict.str()方法

str()方法產生一個字典,並可打印成字符串表示形式。

語法

以下是str()方法的語法:

str(dict)

參數

  • dict -- 這是字典

返回值

此方法返回字符串表示形式。

例子

下麵的例子顯示了str()方法的使用

#!/usr/bin/python

dict = {'Name': 'Zara', 'Age': 7};
print "Equivalent String : %s" % str (dict)

當我們運行上麵的程序,它會產生以下結果:

Equivalent String : {'Age': 7, 'Name': 'Zara'}