Skip to content

Instantly share code, notes, and snippets.

@bark
Last active August 29, 2015 14:04
Show Gist options
  • Save bark/39704c38cca96aade9a0 to your computer and use it in GitHub Desktop.
Save bark/39704c38cca96aade9a0 to your computer and use it in GitHub Desktop.
pyhton exempel
def square(n)
squareNum = n**2
print "in method %d " % (squareNum)
return squareNum
print "square %d " % (square(2))
VS
def square(n)
squareNum = n**2
print "in method %d " % (squareNum)
#return squareNum
print "square cant be printed here"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment