返回列表 發帖
  1. n = 1
  2. while n <= 10:
  3.     print(n, end = " ")
  4.     n += 1
複製代碼

TOP

返回列表