Commit 5fd16616 by BellCodeEditor

save project

parent d03e2521
Showing with 4 additions and 10 deletions
red = []
blue = []
students = ["悟空","八戒","小贝","波奇"]
students.append("洛伊")
students.remove("八戒")
red = students[:2]
blue = students[2:]
print(students)
print(red)
print(blue)
message = "偌伊,周末一起去看动漫展吧!"
for i in message:
print(i)
......
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