Skip to content

Instantly share code, notes, and snippets.

@danhyun
Last active August 29, 2015 14:05
Show Gist options
  • Save danhyun/f654ce6b086deca87c27 to your computer and use it in GitHub Desktop.
Save danhyun/f654ce6b086deca87c27 to your computer and use it in GitHub Desktop.
def powers(i):
numbers = (i, i * i, i * i * i,)
print "The number %s has square %s and cube %s" % numbers
return numbers
assert powers(2) == (2, 4, 8,)
assert powers(-2) == (-2, 4, -8,)
assert powers(3) == (3, 9, 27,)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment