Commit 698a815c by BellCodeEditor

save project

parent d898efa4
Showing with 15 additions and 0 deletions
x=[1,2,3,4,5,5,6,7,5]
for i in x:
if 5 in x:
x.remove(5)
print(x)
\ No newline at end of file
x=["1","2","3","4"]
x=["1","2","3","4"]
x.pop(3)
print(x)
x.remove("3")
print(x)
del x[1]
print(x)
\ 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