Commit 64b2aee1 by BellCodeEditor

save project

parent fb09b063
Showing with 11 additions and 6 deletions
a=['吕布']
b=['袁术','公孙瓒','关羽','张飞','刘备','曹操']
d=b[2:5]
a.extend(d)
print(a)
\ No newline at end of file
name = input('报上民来')
power= int(input('你很牛逼吗'))
hero=['赵一',20,'订二十五奇特',32,'ergehgeg',34,'3h3h3',24,'dream',99]
for i in range(len(hero)):
if i%2==1 and hero [i]>=power:
hero.insert(i-1,name)
hero.insert(i,power)
niuma=hero[-6:]
print("最牛逼的人是:"+str(niuma))
\ 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