使用者互動input

2022-09-16 13:03:12 字數 847 閱讀 3043

input基本用法:

name = input('

請輸入你的名字:')

age =input(『請輸入你的名字:』)

print(name,age)

1、等待輸入

2、將你輸入的值賦值給了前面的變數

3、input出來的資料型別全是字串型別

例題:使用者登陸(三次機會重試)

#input 心中有賬號,密碼,用while迴圈

i =0

while i <3:

username = input(『輸入賬號:』)

password = int(input(『輸入密碼:』))

if username == '心中賬號' and password ==『心中密碼』:

print(『登陸成功』)

else:

print(『登陸失敗,請再次輸入!』)

i += 1

例題:輸出姓名、年齡、職業和愛好

name = input(『請輸入姓名:』)

age = input(『請輸入年齡:』)

job = (『請輸入職業:』)

hobbie = input(『你的愛好:』)

yuyu = '''-----------------info of %s----------------------

name:%s

age:%d

job:%s

hobbie:%s

-----------end---------'''%(name,name,int(age),job,hobbie)

print(yuyu)

使用者互動input

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

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

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

Python基礎 input互動功能

variable input 表示執行後,可以在螢幕中輸入乙個數字,該數字會賦值給自變數。看 get input input please input a number print this is a get input 輸出please input a number 100this is a 10...