Python:利用內建函數將字串轉化為整數

來源:互聯網
上載者:User

標籤:

使用內建函數raw_input()內建函數,它讀取標準輸入,並將讀取到的資料賦值給指定的變數。我們可以使用int()內建函數將使用者輸入的字串轉換為整數:

>>> user = raw_input("Enter login name:")

Enter login name: root

>>> print "Your Login is:", user

Your Login is:  root

 

上面這個例子只能用於文本輸入,下面輸入一個數值字串(並將字串轉換為整數)的例子:

>>> number = raw_input("Now enter a number:") Now enter a number: 1024

>>> print "Doubling your number: %d" % (int(number) * 2)

Doubling your number: 2048

 

在Python中除了int函數,還有以下幾個用於類型相互轉換的函數

float:將字串或者整數轉換為浮點數

str:將數字轉換為字串

chr:將ASCII值轉換為ASCII字元

hex:將整數轉換為十六進位的字串

long:將字串轉換為長整形

oct:將整數轉化為八進位的字串

ord:將ASCII字串轉化為ASCII值

 

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.