Created
April 19, 2025 12:48
-
-
Save danielfreitasce/d244a159108ca967c6829da0c898896d to your computer and use it in GitHub Desktop.
[Python 2.0] - Exercícios de final de módulo - 01
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
item_price = float(input("Digite o preço do item: ")) | |
discount = item_price * 0.12 | |
final_price = item_price - discount | |
print(f"O preço do item com desconto é: {final_price:.2f}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment