Commit 64be36de by BellCodeEditor

save project

parent 9d4ba5e2
Showing with 12 additions and 2 deletions
a=["张","王","赵","钱","孙","李","叶"]
print(a[2:6])
print(a[0:4])
print(a[2:7])
print(a[:])
\ No newline at end of file
a=["250"]
c=["高","王"]
a.extend(c)
print(a)
\ 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