Skip to content

Instantly share code, notes, and snippets.

View girol's full-sized avatar
🐍

André Girol girol

🐍
View GitHub Profile
jogos = range(1,6)
total_1t = total_2t = 0
for j in jogos:
gols_1t = int(input(f"Quantos gols no jogo {j} no primeiro tempo? >>> "))
gols_2t = int(input(f"Quantos gols no jogo {j} no segundo tempo? >>> "))
total_1t += gols_1t
total_2t += gols_2t
media_1t = total_1t/5
from decimal import *
PLACES = Decimal(10) ** -6
option1 = Decimal("1000.1111")
option2 = Decimal("300.2222")
option3 = Decimal("500.3333")
total = option1 - option2 - option3
from functools import wraps
from marshmallow import ValidationError
from mensageria.backends.exceptions import BackendException
from mensageria.core.exceptions import (
BackendNotFoundException,
ConfigurationNotFoundException,
)