Commit 8c7c1f10 by BellCodeEditor

save project

parent 5031cdbe
Showing with 13 additions and 6 deletions
a=['华雄']
b=['袁术','dr','wd','ffv']
b.remove('ffv')
a=['华雄']
c=['bfgb','teerg']
students = ["ww","ded","SB","gsdbfdrstgghftdgftjyffj"]
students.remove("SB")
print(students)
students.append("屁股")
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