python中str()函數(shù)轉(zhuǎn)換字符串
1、方法說(shuō)明
如果只是想把Python的對(duì)象轉(zhuǎn)換成文字串的話,str()函數(shù)是回到人類(lèi)可讀值的表示。
2、語(yǔ)法
classstr(object='')
3、實(shí)例
>>>s='Hello,world.'
>>>str(s)
'Hello,world.'
>>>repr(s)
"'Hello,world.'"
>>>str(1/7)
'0.14285714285714285'
>>>x=10*3.25
>>>y=200*200
>>>s='Thevalueofxis'+repr(x)+',andyis'+repr(y)+'...'
>>>print(s)
Thevalueofxis32.5,andyis40000...
>>>#Therepr()ofastringaddsstringquotesandbackslashes:
...hello='hello,world\n'
>>>hellos=repr(hello)
>>>print(hellos)
'hello,world\n'
>>>#Theargumenttorepr()maybeanyPythonobject:
...repr((x,y,('spam','eggs')))
"(32.5,40000,('spam','eggs'))"
以上就是python中str()函數(shù)轉(zhuǎn)換字符串的方法,希望對(duì)大家有所幫助。更多Python學(xué)習(xí)教程請(qǐng)關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。