NP12 数到20

思路:

step1:for循环遍历,打印输出;

代码如下:

for i in range(1,21):
    print(i)