Files
firestuff/markdown/2012-05-17-fun-python-question.md
2019-04-15 03:59:09 +00:00

328 B

What does this do?

def func():
  print 'foo'
  return
  yield 'bar'

print func()

Take a guess, then give it a try.