二十 python中的輸入函式(兩種方法)

2021-08-21 01:25:07 字數 1196 閱讀 5308

1.input()函式輸入:

格式: 變數名=input('請輸入文字說明')

input()函式會自動識別輸入內容的能力,常用於輸入number(數字)型別使用,若要進行字串輸入不建議使用

#coding:utf-8

age = input('請輸入你的年齡:')

print '你的年齡是%d歲' %age

print type(age)

name = input('請輸入你的姓名:')

print '你的姓名是%s' %name

print type(name)

返回結果:

注:以下23和'張三'是鍵盤輸入的值。 

當輸入為%d時,不需要加引號。不然會報錯

當輸入為%s時,需要加上引號。

2. raw_input函式輸入:

格式:變數名=raw_input('請輸入說明文字')

raw_input函式不論輸入的內容為數字還是字串都將被視為字串型別

#coding:utf-8

name = raw_input('請輸入你的名字:')

print '你的名字是:%s' %name

print type(name)

返回結果:

當預設輸入內容都為字串時,鍵盤輸入值時,可以不加引號。

3. input()和raw_input()的區別

#coding:utf-8

a = input('請輸入乙個表示式:')

print a

print type(a)

b = raw_input('請輸入乙個表示式:')

print b

print type(b)

當輸入2+2時返回結果如下:

python二十 內建函式

求絕對值 abs 1 遍歷可迭代物件,如果每個可迭代物件中的元素都是true,則返回true 如果可迭代物件為空,也返回true all all all 遍歷可迭代物件,如果可迭代物件中,有乙個元素是true,則返回true any 1 二進位制轉換 bin 6 utf 8,gbk,ascii 編碼...

python之輸入函式

raw input 將所有輸入看做字串,返回字串型別 a raw input input input 123 type a 字串 a raw input input input runoob type a 字串input 接收合法表示式,相當於eval raw input a.接收字串時要加引號 b...

Python二十一 Python中的檔案

檔案的操作 開啟 操作 關閉 開啟檔案的引數 r readonly 預設引數 只能讀 不能寫 讀取檔案不存在 會報錯 w 寫檔案 write only 檔案存在時,會清空檔案的內容並寫入新的檔案內容 檔案不存在,會建立新的檔案並寫入內容 a 寫檔案 write only 寫 不會清空檔案內容 會在檔...