Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created April 2, 2021 18:39
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/316faa3c0317d8d88c4aecf2e502d426 to your computer and use it in GitHub Desktop.
Save parzibyte/316faa3c0317d8d88c4aecf2e502d426 to your computer and use it in GitHub Desktop.
"""
https://parzibyte.me/blog
"""
precio_dolar = float(input("Ingresa el costo del dólar en pesos: "))
dolares = float(input("Ingresa la cantidad de dólares: "))
pesos = dolares * precio_dolar
print(f"Los {dolares} dólares equivalen a {pesos} pesos")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment