Ad
Code
Diff
  • def output(thing=[1,1]):
        for _ in range(100): thing.append(thing[-1]+thing[-2])
        return thing
    • def output():
    • return [1, 1, 2, 3, 5, 8]
    • def output(thing=[1,1]):
    • for _ in range(100): thing.append(thing[-1]+thing[-2])
    • return thing

make the first 100 digits of fibonnaci

def output():
    return [1, 1, 2, 3, 5, 8]