MCPcopy Create free account
hub / github.com/ndleah/python-mini-project / answer

Function answer

GK_Maestro/answer_bank.py:2–22  ·  view source on GitHub ↗
(num)

Source from the content-addressed store, hash-verified

1# Store all the answers of the questions in answer_bank dictionary
2def answer(num):
3 answer_bank = {
4 1: "International Civil Aviation Organization",
5 2: "China",
6 3: "Camel",
7 4: "1000",
8 5: "Mars",
9 6: "Elon Musk",
10 7: "Helsinki",
11 8: "Leonardo da Vinci",
12 9: "Russia",
13 10: "4",
14 11: "Hazelnut",
15 12: "118",
16 13: "0",
17 14: "All Clear",
18 15: "Burj Khalifa",
19 16: "Shark",
20 }
21
22 return answer_bank[num]

Callers 1

generate_answerFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected