The Python Tutorial - Input and Output

7. Input and Output 函數 str() 用於將值轉化爲適於人閱讀的形式,而 repr() 轉化爲供解釋器讀取的形式(若是沒有等價的語法,則會發生 SyntaxError 異常) 某對象沒有適於人閱讀的解釋形式的話, str() 會返回與 repr() 等同的值。 >>> s = 'Hello, world.' >>> str(s) 'Hello, world.' >>> repr
相關文章
相關標籤/搜索