無線迴圈:
#__author:"hanhankeji"
#date: 2019/11/28
#while 後面可以加 else
user = "
hanhankeji
"password = "
abc123
"counter =0
while counter < 3:
username = input("
請輸入使用者名稱:")
userpassword = input("
請輸入密碼:")
if username == user and userpassword ==password:
print("
歡迎使用者登入!")
break
else
:
print("
賬戶或密碼錯誤,請確認!
" + "
你還有" + str(3 - int(counter) - 1) + "
次機會"
) counter += 1
if counter == 3:
keep_going_choice = input("
是不是再試試3次[y/n]:")
if keep_going_choice =="y"
: counter =0
else
:
print("
要不要臉·輸了3次都 不對
python第十一天
函式總結 def func a,b print a,b return a b 四個組成部分 函式名 呼叫函式的依據 函式體 執行函式邏輯的 引數列表 為函式提供內部資源 返回值 將函式執行結果返回給外界 返回值 1 空返回 沒有return或空return 2 一鍵返回 3 多值返回 裝有多個值的元...
學習Python的第十一天
今天學習的內容是掌握異常處理 語法錯誤和異常。語法錯誤 python 的語法錯誤或者稱之為解析錯 這個例子中,函式 print 被檢查到有錯誤,是它前面缺少了乙個冒號 語法分析器指出了出錯的一行,並且在最先找到的錯誤的位置標記了乙個小小的箭頭。異常即便python程式的語法是正確的,在執行它的時候,...
第十一天Python學習記錄
python字串常用功能函式 capitalize 首字母大學,其餘小寫 casefold 全變小寫 center 返回以s為中心的,指定字串填充的指定長度的字串 count 統計s中某個字元的個數 endswith 判斷s是否以指定的字元結尾 startswith 判斷s是否以指定的字元開始 ex...