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

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何在每個循環(huán)中打印列表的不同元素?

如何在每個循環(huán)中打印列表的不同元素?

慕尼黑的夜晚無繁華 2024-01-15 17:04:03
我正在制作一個測驗(yàn)程序,用戶可以在測驗(yàn)中添加任意數(shù)量的問題,并且他們也可以參加測驗(yàn)。我只是不知道如何單獨(dú)打印問題。questionsList = [] rightAnswersList = []choicesList = []while True:    option = int(input("Add questions or take the quiz? 1 or 2 respectively: "))    if option == 1:       # adds a question to questionsList and choices to choicesList and answers to rightAnswersList     elif option == 2:       # prints question1 --> choices --> asks answer then it loops so question2 and its choices will now be printed
查看完整描述

1 回答

?
呼啦一陣風(fēng)

TA貢獻(xiàn)1802條經(jīng)驗(yàn) 獲得超6個贊

我不確定你想要什么,但這滿足了你的評論所要求的最低限度:


questionsList = [] 

rightAnswersList = []

choicesList = []

while True:

  option = int(input("Add questions or take the quiz? 1 or 2 respectively: "))

  if option == 1:

    questionsList.append(input("Enter question: "))

    choices = []

    while True:

      choice = input("Enter answer choice or enter 'q' to exit: ")

      if choice == "q":

        break

      choices.append(choice)

    choicesList.append(choices)

    rightAnswersList.append(input("Enter answer: "))

  elif option == 2:

    for i in range(len(questionsList)):

      print(questionsList[i])

      print("Choices:\n" + "\n".join(choicesList[i]))

      answer = input("Enter your answer: ")

      print("Your answer is: " + answer)

      print("Correct answer is: " + rightAnswersList[i])

您可能需要添加額外的代碼來過濾用戶輸入或檢查用戶答案。


查看完整回答
反對 回復(fù) 2024-01-15
  • 1 回答
  • 0 關(guān)注
  • 148 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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