Commit 151f96fa by BellCodeEditor

save project

parent 29b474a5
Showing with 9 additions and 6 deletions
# 勇于挑战的创造师,请运行下面的代码,观察运行结果,和小伙伴们说说你的发现? name = input("xm")
a= ['华雄'] power = input("bl")
c=['颜良','文丑'] hero=["zy",30,"de",37,"sw",52,"wm",89,"zl",98]
a.extend(c) for i in range(len(hero)):
print(a) if i%2==1 and hero[i]>=power:
\ No newline at end of file hero.insert(i-1,name)
hero.insert(i,power)
break
print(hero)
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