Commit 5d75211d by BellCodeEditor

save project

parent 3f472fa3
Showing with 4 additions and 10 deletions
students=("某","某","八戒","某")
students.remove("八戒")
print(students)
students.append('诺依')
print(students)
red=students[:2]
blue=students[-2:]
print(red)
print(blue)
\ No newline at end of file
e="诺依,一起去看电影"
for i in e:
print(e)
\ 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