Skip to content

Instantly share code, notes, and snippets.

@codetombomb
Last active September 23, 2020 23:46
Show Gist options
  • Save codetombomb/8655a25a165750ef0ec9b6a8e5f99651 to your computer and use it in GitHub Desktop.
Save codetombomb/8655a25a165750ef0ec9b6a8e5f99651 to your computer and use it in GitHub Desktop.
square funtion
def square(num):
answer = num * num
print(answer)
square(2)
square(4)
square(6)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment