I was doing this
def gen_fibo(req_len): fib_list = [] for i in range(req_len): if i == 0 or i == 1: fib_list.append(1) el