Python筆記(5)使用者輸入

2021-10-07 18:46:07 字數 1476 閱讀 7855

#!/user/bin/env python

# -*- coding:utf-8 -*-

# author:berlin

#一、第一種使用者輸入方式

#python的變數都是字串型別

#%s代表輸入是string ;%d代表輸入是format(整數) ; %f代表輸入是小數、浮點。(s、d、f都是代表佔位符)

username=

input()

password=

input()

#列印變數的資料型別

print

(type

(username)

)info=

'''轉換前的輸出:

輸入名稱:%s

輸入密碼:%d

'''%

(username,password)

print

(info)

#以上當使用%d作為輸入時,那麼會造成報錯。故需要對變數進行型別轉換:

username=

input()

password=

int(

input()

)info=

'''轉換後的輸出:

輸入名稱:%s

輸入密碼:%d

'''%

(username,password)

print

(info)

#python是強制轉換型別的語言。只需要輸入轉換型別int()、str()等即可達到效果。

#二、第二種使用者輸入方式

username=

input()

password=

int(

input()

)info2=

'''轉換後的輸出:

輸入名稱:

輸入密碼:

'''.

format

(_un=username,

_pw=password)

print

(info2)

#三、第三種使用者輸入方式

username=

input

("請輸入名稱:"

)password=

int(

input

("請輸入密碼:"))

info3=

'''轉換後的輸出:

輸入名稱:

輸入密碼:

'''.

format

(username,password)

print

(info3)

#設定輸入的密碼為密文

import getpass

username=

input

("請輸入名稱:"

)password=getpass.getpass(

"請輸入密碼:"

)print

(username,password)

python 使用者輸入和while迴圈5

基本都是c語言的知識,不再贅述 message input tell me something,and i will repeat it back to you print message 結果tell me something,and i will repeat it back to you he...

python請求使用者輸入 使用者輸入

使用者輸入 大多數程式都旨在解決終端使用者的問題,為此通常需要從使用者那裡獲取一些資訊。例如,假設有人要判斷自己是否到了投票的年齡,要編寫回答這個問題的程式,就需要知道使用者的年齡,這樣才能給出 答案。因此,這種程式需要讓使用者輸入其年齡,再將其與投票年齡進行比較,以判斷使用者是否到了投票的年齡,再...

python使用者輸入

使用者輸入 python2.0 name raw input input your name raw input 輸入接收的是字串和數字,python都認為是字串。並賦值給name name input input your age input 輸入接收的是數字和字元,input python認為輸...