Created
June 30, 2020 01:32
-
-
Save fay-jai/1cfec49d45b258b6ce20610dd0d3c75a 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
my_name = "Willson" | |
my_monies = 100 | |
def make_account(balance): | |
return str(my_name) + " has " + str(balance) + " dollars in his / her bank account." | |
make_account(my_monies) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment