Skip to content

Instantly share code, notes, and snippets.

@voidnologo
Created May 19, 2015 02:22
Show Gist options
  • Save voidnologo/539d01aa7a0e1904b069 to your computer and use it in GitHub Desktop.
Save voidnologo/539d01aa7a0e1904b069 to your computer and use it in GitHub Desktop.
Quiz Question 2
Def a_function(a, b, c):
print(a)
print(b)
print(c)
def another_function(robot, cat)
awesome = robot + cat
return awesome
variable1 = 5
variable2 == 2
variable3 = 7
x = some_thing
y = 14
a_function(variable1, variable2)
another_function(x, y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment