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