Python无限循环(while) a = 7while a > 0: a = a-1 print(a,end=",")输出:6,5,4,3,2,1,0, Python 2023-06-08 205 点赞 3 评论 310 浏览