Commit 4ae3d77f by BellCodeEditor

save project

parent 18b5629d
Showing with 3 additions and 14 deletions
s = ["悟空","小贝","八戒","波奇"] bi="YOU ARE KO!"
#删除八戒 for i in bi:
s.remove("八戒") print(i)
#添加诺依
s.insert(0,"诺依")
print(s)
#分成红蓝两组
#切片,前2个加到red,后两个加到蓝组
r=s[0:2]
b=s[2:4]
print(r)
print(b)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment