Python无限循环(while)

a = 7
while  a > 0:
    a = a-1
    print(a,end=",")

输出:6,5,4,3,2,1,0,