中文字幕一区二区人妻电影,亚洲av无码一区二区乱子伦as ,亚洲精品无码永久在线观看,亚洲成aⅴ人片久青草影院按摩,亚洲黑人巨大videos

Python 字典(Dictionary) str()方法


描述

Python 字典(Dictionary) str() 函數(shù)將值轉(zhuǎn)化為適于人閱讀的形式,以可打印的字符串表示。

語法

str()方法語法:

str(dict)

參數(shù)

  • dict -- 字典。

返回值

返回字符串。

實例

以下實例展示了 str()函數(shù)的使用方法:

#!/usr/bin/python

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

以上實例輸出結(jié)果為:

Equivalent String : {'Age': 7, 'Name': 'Zara'}
其他擴展