Created
June 15, 2021 12:53
-
-
Save erikhenrique/f222530d22770493758c3de172fd044b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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