Python字典str()
函数产生字典的可打印字符串表示。
语法
以下是str()
方法的语法 -
str(dict)
语法
- dict - 这是字典,其长度需要计算的字典。
返回值
- 此方法返回给定对象的字符串表示。
示例
以下示例显示str()
方法的用法 -
#!/usr/bin/python3
dict = {'Name': 'Maxsu', 'Age': 7, 'Class': 'First'}
print ("Equivalent String : %s" % str (dict))
当运行上面的程序,它产生以下结果 -
Equivalent String : {'Name': 'Maxsu', 'Age': 7, 'Class': 'First'}