Skip to content

Instantly share code, notes, and snippets.

@HOGRIDDDDAAAAAR
Created February 15, 2023 13:08
Show Gist options
  • Save HOGRIDDDDAAAAAR/d68df737bb663b979a3a42a16dc61933 to your computer and use it in GitHub Desktop.
Save HOGRIDDDDAAAAAR/d68df737bb663b979a3a42a16dc61933 to your computer and use it in GitHub Desktop.
Baller description
def balls(a,b):
return 5 * a + b
print(balls(1,2))
#returns 7
def joe(a):
5 * a
print(joe(1))
#returns nothing because return value is not specified...
@HOGRIDDDDAAAAAR
Copy link
Author

Hog Rida!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment