(Solved) : Gettotalasked Quizstats Returns Number Questions Asked Total Number Cards Deck Ll Need It Q37219826 . . .
get_total_asked(quiz_stats): Returns the number of questionsasked total (not the number of cards in the deck). You’ll need toiterate through the dictionary counts which is in the dictionaryquiz_stats to do this. After loading the deck, try taking a quiz!You should see your deck file listed here. These won’t be correctuntil after Part 3. get_most_missed(deck, quiz_stats): Returns alist of cards from the deck which were most missed during the quiz.For example, in the previous example the card with id 2 is the mostmissed. Note that you are returning a list because there may beties for “most missed”. Hint: try this in two parts… (1) determinethe most missed question (just like finding the max), then (2) putall cards which have that miss-rate into a list.
Expert Answer
Answer to get_total_asked(quiz_stats): Returns the number of questions asked total (not the number of cards in the deck). You’ll…
OR