執行 ❯
擁有你自己的 Python 伺服器
×
更改方向
更改主題,深色/淺色
前往 Spaces
thislist = ["apple", "banana", "cherry", "orange", "kiwi", "melon", "mango"] print(thislist[:4]) #This will return the items from index 0 to index 4. #Remember that index 0 is the first item, and index 4 is the fifth item #Remember that the item in index 4 is NOT included
['蘋果', '香蕉', '櫻桃', '橙子']