-
-
Save kellegous/878487a1fc758f511ba0 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
#!/usr/bin/env python3 | |
def echo(str): | |
print("I will return %s" % str) | |
return str | |
print(echo("32")) | |
print(echo("butter")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment