Commit 8980d700 by BellCodeEditor

save project

parent 0a3f600e
Showing with 6 additions and 4 deletions
bros=["关羽","刘备","张飞"] bros=["关羽","刘备","张飞","袁绍","袁术"]
for i in (bros): for i in range(len(bros)):
print(i) print(bros[i])
\ No newline at end of file bros.remove("关羽")
bros.pop(3)
print(bros)
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