0618PythonFibonacci

Run Settings
LanguagePython
Language Version
Run Command
def fibonacci(): a,b = 0,1 while True: yield a a,b = b,a+b f = fibonacci() from itertools import islice print(list(islice(f, 10)))
Editor Settings
Theme
Key bindings
Full width
Lines