Exercício - sistema de perguntas e respostas com Python
This commit is contained in:
20
aula77.py
Normal file
20
aula77.py
Normal file
@@ -0,0 +1,20 @@
|
||||
# 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',
|
||||
},
|
||||
]
|
||||
Reference in New Issue
Block a user