![]() |
Jupyter at Bryn Mawr College |
|
|
Public notebooks: /services/public/dblank / CS371 Cognitive Science / 2016-Fall |
import time
def test():
retval = []
for i in range(5):
retval.append(42)
time.sleep(1)
return retval
test
test()
for x in test():
print(x)
break