Python基礎 input互動功能

2021-10-04 09:54:31 字數 1284 閱讀 5639

variable=input() 表示執行後,可以在螢幕中輸入乙個數字,該數字會賦值給自變數。看**:

get_input =

input

('please input a number:',)

print

('this is a:'

,get_input)

#輸出please input a number:

100this is a:

100

input()應用在if語句中.

在下面**中,需要將input() 定義成整型,因為在if語句中自變數 get_input 對應的是1 and 2 整數型。輸入的內容和判斷句中對應的內容格式應該一致。

也可以將if語句中的1and2 定義成字串,其中區別請讀者自定寫入**檢視。

get_input =

int(

input

('please input a number:'))

#input返回的是字串形式,要把它轉化為整數形式

if get_input ==1:

print

('this is one'

)elif get_input ==2:

print

('this is two'

)else

:print

('not one or two'

)#輸出

please input a number:

3#輸入3

not one or two

用input()來判斷成績

score =

int(

input

('please input your score:'))

if score >=90:

print

('you got a'

)elif score >=80:

print

('you got b'

)elif score >=70:

print

('you got c'

)elif score >=60:

print

('you got d'

)else

:print

('not pass exam'

)#輸出

please input your score:

59#輸入59

notpass exam

使用者互動input

input 函式 接收到的都是str,如果輸入為數字,列印結果想進行運算,此時需要轉義.語法 內容 input 提示資訊 這裡可以直接獲取到使用者輸入的內容.a input 請輸入你的名字 print type a 列印一下 a 的型別,顯示 class str print my name is a...

使用者互動input

input基本用法 name input 請輸入你的名字 age input 請輸入你的名字 print name,age 1 等待輸入 2 將你輸入的值賦值給了前面的變數 3 input出來的資料型別全是字串型別 例題 使用者登陸 三次機會重試 input 心中有賬號,密碼,用while迴圈 i ...

python 使用者互動輸入input的4種用法詳解

使用者輸入 1 使用input來等待使用者輸入。如 username input username password input password print username,password 2 格式化輸出 第一種方法 字串拼接 不建議使用,太耗記憶體 name input name age i...