21 lines
426 B
Python
21 lines
426 B
Python
# Exercício - sistema de perguntas e respostas
|
|
|
|
|
|
perguntas = [
|
|
{
|
|
'Pergunta': 'Quanto é 2+2?',
|
|
'Opções': ['1', '3', '4', '5'],
|
|
'Resposta': '4',
|
|
},
|
|
{
|
|
'Pergunta': 'Quanto é 5*5?',
|
|
'Opções': ['25', '55', '10', '51'],
|
|
'Resposta': '25',
|
|
},
|
|
{
|
|
'Pergunta': 'Quanto é 10/2?',
|
|
'Opções': ['4', '5', '2', '1'],
|
|
'Resposta': '5',
|
|
},
|
|
]
|