Skip to content

Commit

Permalink
Correção de Bugs + Ícones - V2.0
Browse files Browse the repository at this point in the history
-Removi o "spoiler" da seleção que aparecia no prompt ao se rodar o arquivo.
-Também adicionei um ícone original :)
-A última página agora exibe o pódio da copa simulada.
  • Loading branch information
Gustavo-A-Costa authored May 7, 2021
1 parent 75fd270 commit 05da5c4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
Binary file added copaicon2.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion sorteio.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def sorteio_copa():
lista1.append(dict_sel)

else:
print("Alguma seleção não possui força válida")
print(" ")

ordem = (lista10 + lista9 + lista8 + lista7 + lista6 +
lista5 + lista4 + lista3 + lista2 + lista1)
Expand Down
18 changes: 9 additions & 9 deletions v2_matamata.py
Original file line number Diff line number Diff line change
Expand Up @@ -428,9 +428,7 @@ def copa_mundo(grupos, RA, RB, RC, RD, RE, RF, RG, RH):
TL2 = SF2_1
# Fim do jogo SF2

print('__DISPUTA DE TERCEIRO LUGAR__')
# Jogo TL
print('______________________________')

TL = resultado(int(TL1[1]), int(TL2[1]))

Expand Down Expand Up @@ -488,21 +486,18 @@ def copa_mundo(grupos, RA, RB, RC, RD, RE, RF, RG, RH):

# Fim do Mata Mata

print('{} foi a seleção vencedora da Copa do Mundo!'.format(Camp))
print('{} foi a seleção vice'.format(Vice))
print('{} foi a seleção que ficou em terceiro'.format(Terceiro))
print('{} foi a seleção que ficou em quarto'.format(Quarto))

return (TO1, TO2, TO3, TO4, TO5, TO6, TO7, TO8,
TO1P, TO2P, TO3P, TO4P, TO5P, TO6P, TO7P, TO8P,
TQ1, TQ2, TQ3, TQ4, TSF1, TSF2, TTL, TFINAL,
TQ1P, TQ2P, TQ3P, TQ4P, TSF1P, TSF2P, TTLP, TFINALP)
TQ1P, TQ2P, TQ3P, TQ4P, TSF1P, TSF2P, TTLP, TFINALP,
Quarto, Terceiro, Vice, Camp)


def textos_matamata(oi1, oi2, oi3, oi4, oi5, oi6, oi7, oi8,
oi1p, oi2p, oi3p, oi4p, oi5p, oi6p, oi7p, oi8p,
ql1, ql2, ql3, ql4, se1, se2, ter, fin,
ql1p, ql2p, ql3p, ql4p, se1p, se2p, terp, finp):
ql1p, ql2p, ql3p, ql4p, se1p, se2p, terp, finp,
quart, terce, vice, camp):

texto_oi1 = f"""
{oi1}
Expand Down Expand Up @@ -553,6 +548,11 @@ def textos_matamata(oi1, oi2, oi3, oi4, oi5, oi6, oi7, oi8,
texto_final = f"""
{fin}
{finp}
_______________________________________
{camp} foi a seleção campeã!
{vice} foi a seleção vice-campeã
{terce} ficou em terceiro
{quart} ficou em quarto
"""

return [texto_oi1, texto_oi2, texto_oi3, texto_oi4,
Expand Down

0 comments on commit 05da5c4

Please sign in to comment.