Created
June 21, 2016 00:47
-
-
Save lbattaglioli2000/6c11e9220a1803895e47906fbaa74d6a 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
# We start of with 12.00 | |
money = 12.00 | |
# We update the value and change it to 1200.00 | |
money = 1200.00 | |
# We print the new value, which is 1200.00 | |
print("$" + str(money)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment