Files
firestuff/markdown/2012-05-17-fun-python-question.md
2019-04-25 02:45:09 +00:00

326 B

What does this do?

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

print func()

Take a guess, then give it a try.