我的列表创建
mylist=["singam","山羊","rayyan","leo"]
打印(我的列表)
打印(我的列表[2])
mylist[1]="mersal"
打印(我的列表)
mylist=["singam","山羊","raayan"]
mylist.append("mersal")
打印(我的列表)
mylist=["singam","山羊","raayan"]
mylist.insert(1,"Mersal")
打印(我的列表)
mylist=["singam","山羊","rayaan","mersal"]
mylist.remove("singam")
打印(我的列表)
mylist=["singam","山羊","rayaan","mersal"]
对于我的列表中的 x:
打印(x)
mylist=["singam","山羊","rayaan","mersal"]
mylist.sort()
打印(我的列表)
mylist=["singam","山羊","rayaan","mersal"]
mylist.pop()
打印(我的列表)
欧/普
['singam', '山羊', 'rayyan', 'leo']
雷扬
['singam', 'mersal', 'rayyan', 'leo']
['singam', '山羊', 'raayan', 'mersal']
['singam', 'Mersal', '山羊', 'raayan']
['山羊', 'rayaan', 'mersal']
辛加姆
山羊
拉亚安
梅萨尔
['山羊', 'mersal', 'rayaan', 'singam']
['singam', '山羊', 'rayaan']
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3