# 皇帝的棋盘 a = [] # 棋盘的米粒数量 q = 0 # 米粒数的总和 # 写一个for循环加64个数字进去 for z in range(64): a.append(2**z) print(a