Commit 3c1cd299 by BellCodeEditor

save project

parent 50bb36ff
Showing with 16 additions and 0 deletions
a=[8,6,5,4,1]
a[2:4]
print(a)
\ No newline at end of file
num=[8,6,5,4,1]
num[0:5]
#num.extend(1,4,5,6,8)
print(num)
\ No newline at end of file
names=["小张","小王","小李"]
names.insert(1,"12345678911")
names.insert(3,"12345678922")
names.append("12345678933")
print(names)
\ 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