《Beginning Python From Novice to Professional》學習筆記一:String

來源:互聯網
上載者:User
1.兩個字串放在一起會自動合并
"Let's say " '"Hello, world!"' --->'Let/'s say "Hello, world!"'
但是兩個字串變數放在一起中間要加“+”號才會合并

2.str與repr
str會將變數轉化成某種使用者能夠理解的String方式,如
print str(10000L) --->10000
#str(object) -- Converts a value to a string
repr會將變數轉化為Python的合法變數
print repr(10000L) --->10000L
另外repr(x)='x'
#repr(object) -- Returns a string representation of a value

3.input與raw_input
name = input("What is your name? ")斷行符號繼續
What is your name? Gumby
會出錯,因為input會假設你輸入的是有效Python變數,而此處Gumby未定義。改為
What is your name? 'Gumby'則成功
#input(prompt) -- Gets input from the user
name = raw_input("What is your name? ")斷行符號繼續
What is your name? Gumby 則不會報錯,因為raw_input會認為輸入的均為String
#raw_input(prompt) -- Gets input from the user, as a string

4.'''與r與u
'''
長字串'''       中間可以分行,可以任意用'、"
r首碼為Raw String,     'Hello /nthyU!'會分行,而r'Hello /nthyU!'就忠實於WhatYouSeeIsWhatYouGet,
u首碼為Unicode String,每個字元用16Bit。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.