Python -- 值轉換為字串的兩種機制

來源:互聯網
上載者:User

標籤:

可以通過以下兩個函數來使用這兩種機制:一是通過str函數,它會把值轉換為合理形式的字串,以便使用者可以理解;而repr會建立一個字串,它以合法的Python運算式的形式來表示值。下面是一些例子:

>>> print repr("Hello, world!")‘Hello, world!‘>>> print repr(10000L)10000L>>> print str("Hello, world!")Hello, world!>>> print str(10000L)10000

repr(x)的功能也可以用`x`實現(注意,`是反引號,而不是單引號,在鍵盤tab上面,數字1前面)。如果希望列印一個包含數位句子,那麼反引號就很有用了。

>>> temp = 42>>> print "the temperature is " + tempTraceback (most recent call last):    File "<pyshell#61>", line 1, in?        print "the temperature is " + tempTypeError: cannot add type "int" to string>>> print "the temperature is " + `temp`the temperature is 42

注意,在Python3.0 中,已經不再使用反引號了。因此,即使在舊的代碼中看到了反引號,你也應該堅持使用repr。

簡而言之, str、repr和反引號是將Python值轉換為字串的3種方法。函數str讓字串更易於閱讀,而repr(和反引號)則把結果字串轉換為合法的Python運算式。

Python -- 值轉換為字串的兩種機制

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.