您的位置:首页 > 技术中心 > 其他 >

str python是什么意思

时间:2019-10-15 11:15

str python是什么意思?

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

语法

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

class str(object='')

参数

object -- 对象。

返回值

返回一个对象的string格式。

实例

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

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

相关推荐:《Python教程》

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

热门排行

今日推荐

热门手游