Variables defined in the __init__() method are instance variables that can be polled on the class instances.
class Question():
def __init__(q, a)
self.q = q
self.a = a
lightyear = Question("How many kilometers are there in a light year?", "A light year is approximately ten trillion kilometers.")
print (lightyear.q)
print (lightyear.a)