Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created May 27, 2021 02:29
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 parzibyte/b95ad3c1b0383dc121bf86db1c169d58 to your computer and use it in GitHub Desktop.
Save parzibyte/b95ad3c1b0383dc121bf86db1c169d58 to your computer and use it in GitHub Desktop.
"""
https://parzibyte.me/blog
"""
porcentaje_aumento = 30
valor_original = 100
descuento = valor_original * (porcentaje_aumento / 100)
valor_con_descuento = valor_original - descuento
print(f"El valor con descuento es {valor_con_descuento}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment