| 1 | # Store all the easy questions to be asked, and returns the dictionary |
| 2 | def easy_question(num): |
| 3 | easy_question_bank = { |
| 4 | 2: "COVID19 originated from which country?", |
| 5 | 3: "Which animal is known as the 'Ship of the Desert'?", |
| 6 | 4: "How many years are there in one Millenium?", |
| 7 | 8: "Who painted the Mona Lisa?", |
| 8 | 9: "What is the largest country in the world?", |
| 9 | 14: "What does the AC button on a calculator stand for?", |
| 10 | 15: "What is the tallest building in the world?", |
| 11 | 16: "Which one of these is a fish: a whale, a shark or a dolphin?", |
| 12 | } |
| 13 | |
| 14 | return easy_question_bank[num] |
| 15 | |
| 16 | # Store all the hard questions to be asked, and returns the dictionary |
| 17 | def hard_question(num): |