Skip to content

Instantly share code, notes, and snippets.

@computer-tutor
Created April 28, 2020 05:18
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save computer-tutor/8b4d85f0daf17a4d6c8f6a4dbd078c27 to your computer and use it in GitHub Desktop.
def cube(x=2):
print('Cube of',x, 'is', x**3)
def equal(x,y):
return x==y
cube()
cube(5)
print(equal('a','b'))
print(equal('s','s'))
print(equal('C','T'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment