Commit 4d2d9051 by BellCodeEditor

save project

parent f98b635c
Showing with 13 additions and 0 deletions
......@@ -13,3 +13,15 @@ s=['袁术','夏侯惇','曹操','关羽']
b=["文良","是"]
c=s+b
print(c)
a=[0,1,2,3,4,5]
print(a[2:-1:1])
a=['erer',1,2,3,4,5,7]
d=11
for i in range(1,len(a)):
if a[i]>b:
a.insert(i,b)
break
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