Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created May 27, 2021 04:10
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/1423e6af3b0bfe7aa9023e31741b6028 to your computer and use it in GitHub Desktop.
Save parzibyte/1423e6af3b0bfe7aa9023e31741b6028 to your computer and use it in GitHub Desktop.
"""
https://parzibyte.me/blog
"""
porcentaje_aumento = 50
valor_con_aumento = 150
porcentaje_real = 100 + porcentaje_aumento
valor_original = (100 * valor_con_aumento) / porcentaje_real
print(f"El valor original es {valor_original}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment