返回列表 發帖
  1. a=["忠","孝","仁","愛","信","義","和","平"]
  2. print(a[0])
  3. print(a[1:4])
  4. print(a[3:5])
  5. print(a[-1])
複製代碼

TOP

返回列表