Last active
June 30, 2020 01:22
-
-
Save fay-jai/7afc8019dbfc0bc61e638bee87337ae3 to your computer and use it in GitHub Desktop.
This file contains 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
my_monies = 100 | |
def make_account(balance): | |
return "You have " + str(balance) + " dollars in your bank account." | |
make_account(my_monies) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment