Commit d516a3f3 by BellCodeEditor

save project

parent a7ade7e6
Showing with 8 additions and 3 deletions
......@@ -2,7 +2,11 @@
# 省略繁杂情节,刘关张三人一起冲入战场,围攻吕布:
a='老李'
c=8
c=66
b=['公孙瓒',30,'关羽',37,'张飞',52,'刘备',89,'曹操',98]
for i in range(len(b))
if i%2==1 and b[i]>=
for i in range(len(b)):
if i%2==1 and b[i]>=c:
b.insert(i-1,a)
b.insert(i,c)
break
print(b[-6:])
\ 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