当前位置:Gxlcms > Python > python中的str是什么意思

python中的str是什么意思

时间:2021-07-01 10:21:17 帮助过:306人阅读

python中的str是什么意思?

python中str()函数是将对象转化为适于人阅读的形式。

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

class str(object='')

参数

object -- 对象。

返回值

以下展示了使用 str() 方法的实例:

>>>s = 'RUNOOB'
>>> str(s)
'RUNOOB'
>>> dict = {'runoob': 'runoob.com', 'google': 'google.com'};
>>> str(dict)
"{'google': 'google.com', 'runoob': 'runoob.com'}"
>>>

相关推荐:《Python教程》

以上就是python中的str是什么意思的详细内容,更多请关注Gxlcms其它相关文章!

人气教程排行