1.代码如下: 先上图 2.代码如下: sum = 0 for i in range(64): sum = sum + 2i print(’{}: {}’.format(i + 1, 2i)) print(‘sum = {}’.format(sum)) 3.运行结果: