Commit 8c7c1f10 by BellCodeEditor

save project

parent 5031cdbe
Showing with 13 additions and 6 deletions
a=['华雄'] students = ["ww","ded","SB","gsdbfdrstgghftdgftjyffj"]
b=['袁术','dr','wd','ffv'] students.remove("SB")
b.remove('ffv') print(students)
a=['华雄'] students.append("屁股")
c=['bfgb','teerg'] print(students)
red = students[0:2]
blue = students[2:4]
print(red)
print(blue)
\ No newline at end of file
my_list = [1,2,3,4,5,6,7,8,9,]
print(len(my_list))
\ 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