Last active
July 28, 2021 17:28
-
-
Save victoraguilarc/4c0bb3ce5d447d64791f47e72c25a761 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
bob_usd_rate = 6.96 | |
mxn_usd_rate = 19.10 | |
mxn_amount = float(input('Input MXN: ')) | |
usd_amount = mxn_amount / mxn_usd_rate | |
bob_amount = usd_amount * bob_usd_rate | |
print('BOB: '+ str(round(bob_amount, 2))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment