第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

我的代碼的一部分無法在 while 循環(huán)中工作

我的代碼的一部分無法在 while 循環(huán)中工作

蝴蝶刀刀 2023-12-12 15:11:19
我不知道為什么,但它正在猜測(cè)密碼,但當(dāng)它猜測(cè)正確時(shí),它并沒有結(jié)束程序。任何幫助深表感謝!#importsimport time, random#Welcomeprint("Welcome to Password Guess!")pass1 = input("Please insert your phone password:")#Start systemguessclock = 0start1 = 1i = 1while i < 2:    while i < 2:        guess1 = random.randint(1, 2)        guessclock += 1        print(guess1)    if pass1 == guess1:        i = 3        print("Password guessed")        print("It took", guessclock)        print("Attempts")
查看完整描述

2 回答

?
繁星淼淼

TA貢獻(xiàn)1775條經(jīng)驗(yàn) 獲得超11個(gè)贊

嘗試更換

pass1 = input("Please insert your phone password:")

pass1 = int(input("Please insert your phone password:")) # turns pass1 into an integer


查看完整回答
反對(duì) 回復(fù) 2023-12-12
?
蠱毒傳說

TA貢獻(xiàn)1895條經(jīng)驗(yàn) 獲得超3個(gè)贊

這是一個(gè)更好的版本(沒有雙 while 循環(huán)并帶有 int 轉(zhuǎn)換):


#imports

import time, random


#Welcome

print("Welcome to Password Guess!")

pass1 = int(input("Please insert your phone password:"))


#Start system


guessclock = 0


start1 = 1


i = True

while i:

    guess1 = random.randint(1, 2)

    guessclock += 1

    print(guess1)

    if pass1 == guess1:

        i = False

print("Password guessed")

print("It took", guessclock)

print("Attempts")


查看完整回答
反對(duì) 回復(fù) 2023-12-12
  • 2 回答
  • 0 關(guān)注
  • 162 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)