定义
str()将对象转换为适合阅读的字符串形式。
语法
class str(object='')
参数
- object -- 对象。
返回值
返回一个对象的string格式。
实例
1 s = 'RUNOOB' 2 print(str(s)) # 输出RUNOOB 3 dict = {'runoob': 'runoob.com', 'google': 'google.com'} # 输出{'runoob': 'runoob.com', 'google': 'google.com'} 4 print(str(dict))
参考网址
- Python str() 函数:https://www.runoob.com/python/python-func-str.html