运行下面程序,输出的结果是()。
lst = [0, 1, 2] while len(lst) < 11: lst.append(lst[-1] * 2) print(sum(lst))
1023
1024
2047
2048