Files
firestuff/2012-05-17-fun-python-question.html

19 lines
347 B
HTML
Raw Normal View History

2019-04-15 03:59:09 +00:00
<!--# set var="title" value="Fun Python question" -->
<!--# set var="date" value="May 17, 2012" -->
<!--# include file="include/top.html" -->
<p>What does this do?</p>
<pre><code>def func():
print 'foo'
return
yield 'bar'
print func()
</code></pre>
<p>Take a guess, then give it a try.</p>
<!--# include file="include/bottom.html" -->