一:使用者輸入
input(" ")
輸出輸入一:
%s:字串
%d:整型
%f:字元型,小數
%(變數1,變數2......)
info1='''輸入輸出二:----------info1 of %s -------------
name:%s
age:%d
job:%s
salary:%s
'''%(name,name,age,job,salary)
print(info1)
.format
name:age:
job:
salary:
'''.format(
_name=name,
_age=age,
_job=job,
_salary=salary
)print(info2)
輸入方式三
.format
info3='''總結:----------info3 of -------------
name:
age:
job:
salary:
'''.format(name,name,age,job,salary)
print(info3)
1 %2 {}.format
3 .fromat
4密文獲取
import getpass #先導入庫
password = getpass.getpass("password:")
在pycharm中不可用,可以在ide模式中使用
使用者互動程式
flog true 退出多重迴圈使用 count 0 while count 3 username input 使用者名稱 password input 密碼 f1 open file 資訊.txt mode r encoding utf 8 for line1 in f1 line1 line1....
python使用者互動
python定義字串一般用單引號或雙引號,把要表示的內容括起來,如 name linjunjie address taiwan 如果要定義的字串有多行的情況,用三個單引號 person name jj job geshou age 30 print person 列印使用者輸入的內容 name in...
Python使用者互動
類似銀行的atm機 就是一台計算機 使用者要取錢就需要我們為其編寫程式來執行,需要使用者輸入密碼金額等資訊與atm機互動 完美的分割線 使用下面這幾行 就可以實現上面的功能 username input username password input password print username,...