Python之道(二)之字串

來源:互聯網
上載者:User

標籤:python   字串   

我們選擇在Ubuntu下進行Python編程:建立起一個.py檔案,裡面開始敲Python代碼,然後在shell中利用命令 $python 檔案名稱 顯示運行結果。

這裡介紹幾個與字串有關的函數和文法:

1. input

name = input ("What's your name? ")print "Hello, " + name + "!"

input會在輸出“What‘s your name?”後讓使用者輸入,如果此時使用者輸入Tom,會報錯——“NameError: name ‘Tom‘ is not defined”,但輸入“Tom”便會列印出“Hello, Tom!”。這是因為input要求使用者帶著引號輸入他們的名字。顯然這有點苛刻了,來看下面這個函數。


2. raw_input

age = raw_input ("How old are you?")


此時輸入21是正確的,因為raw_input會把所有的輸入當做未經處理資料(raw data),然後將其放入字串中。
一般,我們儘可能使用raw_input函數。


3. 轉義符‘\‘

print "Hello, world!"

會列印Hello, world! 同樣我們也可用在運算式上:

1 + 2 + 4 + 5

會列印結果12。


4. repr

這個函數保留輸入的原始形式,來看個例子就明白了



如果只用print,它會取代字串的引號和長整型的L,repr會保留這些特徵。



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.