运行 ❯
获取
自己的 Python
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
thislist = ["apple", "banana", "cherry", "orange", "kiwi", "melon", "mango"] print(thislist[2:]) #This will return the items from index 2 to the end. #Remember that index 0 is the first item, and index 2 is the third
['樱桃', '橙子', '猕猴桃', '哈密瓜', '芒果']