11 lines
194 B
Python
11 lines
194 B
Python
from tables import Question
|
|
|
|
QUESTIONS = [
|
|
Question(1, 0, 100),
|
|
Question(2, 0, 101),
|
|
Question(3, 0, 102),
|
|
Question(4, 1, 105),
|
|
Question(5, 1, 106),
|
|
Question(6, 1, 107)
|
|
]
|