Python
Python copied to clipboard
Useful Python scripts written in 3! Uses a lot of modules and APIs.
class Question: def __init__(self, prompt, answer): self.prompt = prompt self.answer = answer questions = [ Question("What is the capital of France?\n(a) Paris\n(b) London\n(c) Berlin\n", "a"), Question("What is 2 + 2?\n(a)...
class Question: def __init__(self, prompt, answer): self.prompt = prompt self.answer = answer questions = [ Question("What is the capital of France?\n(a) Paris\n(b) London\n(c) Berlin\n", "a"), Question("What is 2 + 2?\n(a)...