byStarTW says to YSITD print() i = 10 # 設定控制變數 while i > 0: # 迴圈工作區 print(i) i -= 1 # 調整控制變數值 print()