Skip to content

Instantly share code, notes, and snippets.

@erikhenrique
Created June 15, 2021 12:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erikhenrique/f222530d22770493758c3de172fd044b to your computer and use it in GitHub Desktop.
Save erikhenrique/f222530d22770493758c3de172fd044b to your computer and use it in GitHub Desktop.
cep = input("Digite seu CEP: ")
print(cep)
if len(cep) < 9:
print("CEP inválido")
transportadoras = (
("Correios", 10.0),
("Total Express", 20.0),
("Marquinhos Delivery", 5.00),
)
for nome, preco in transportadoras:
if preco < 10:
print("Transportadora escolhida: " + nome)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment