Untitled

Run Settings
LanguagePython
Language Version
Run Command
fib = [0,1,1,2,3,5,8,13,21,34,55] #odds result = filter(lambda x: x % 2, fib) print(*result) #evens result = filter(lambda x: x % 2 == 0, fib) print(*result)
Editor Settings
Theme
Key bindings
Full width
Lines