Created
March 24, 2019 19:19
-
-
Save tjt263/69c301fe235e749ef56d8533bcc10a97 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
#!/usr/bin/env python3 | |
def plusone(x): | |
y = x + 1 | |
return(y) | |
print(plusone(1)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment