Python 字典 Dictionary str()方法
Python 字典 Dictionary str()方法
Python 字典(Dictionary) 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'}
相关文章
- Python 循环语句
- Python 文件I/O
- Python File 方法
- Python XML 解析
- Python 节点
- Python 堆
- Python 回溯
- Python3 迭代器
- Python log() 函数
- Python File close() 方法
- Python os.chmod() 方法
- Python os.getcwdu() 方法
- Python os.stat_float_times() 方法
- Python os.ttyname() 方法
- Python encode()方法
- Python isalpha()方法
- Python startswith()方法
- Python List insert()方法
- Python List reverse()方法
- Python time gmtime()方法