Commit e20d3bf2 by BellCodeEditor

save project

parent da66e97d
Showing with 8 additions and 0 deletions
...@@ -2,3 +2,10 @@ ...@@ -2,3 +2,10 @@
# 快用你机灵的小脑瓜想想,如何将刘强和他的臂力值自动插入到hero列表中? # 快用你机灵的小脑瓜想想,如何将刘强和他的臂力值自动插入到hero列表中?
name="铁蛋" name="铁蛋"
power=66 power=66
hero=["张三",29,"李四",35,"王五",48,"老六",77,"老八",98]
for i in range(len(hero)):
if i%2==1 and hero[i]>=power:
hero.insert(i-1,name)
hero.insert(i,power)
break
print(hero)
\ 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