学习一下print的sep和end的区别:sep在打印连续内容的时候指定分隔符,而end指定一行的结束符
for i in range(1,16,1):
    if i == 13:
        continue
    else:
        print(i,end=' ')