1. 程式人生 > >字串表示,str 和 repr

字串表示,str 和 repr

str   :把值轉換為合理的字串

repr:建立一個字串

>>> print repr("hello world")

'hello world'

>>> print repr(10000L)

10000L

>>> print str("hello world")

hello world

>>> print str(10000L)

10000

str是一種型別,把“L”看作長整型符號

repr是一個函式,把“10000L”整看作體的字串