Created
February 21, 2020 21:24
-
-
Save gandroz/e69185000339e1b67cc10523fb2c7681 to your computer and use it in GitHub Desktop.
gitlab_snippet
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
def squares(x): | |
# Perform calculus | |
y = x**2 | |
return y | |
if __name__ == "__main__": | |
print(f"The square of 10 is: {squares(10)}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment