Python str() 函數(shù)

2019-03-13 13:49 更新

Python str() 函數(shù)

Python 內(nèi)置函數(shù) Python 內(nèi)置函數(shù)

描述

Python str() 函數(shù)將對(duì)象轉(zhuǎn)化為適于人閱讀的形式。

語(yǔ)法

以下是 str() 方法的語(yǔ)法:

class str(object='')

參數(shù)

  • object:對(duì)象。

返回值

返回一個(gè)對(duì)象的string格式。

實(shí)例

以下展示了使用 str() 方法的實(shí)例:

>>>s = 'w3cschool'
>>> str(s)
'W3Cschool'
>>> dict = {'w3cschool': 'w3cschool', 'google': 'google.com'};
>>> str(dict)
"{'google': 'google.com', 'w3cschool': 'w3cschool.cn'}"
>>>

Python 內(nèi)置函數(shù) Python 內(nèi)置函數(shù)

以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)