|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
代码:
heros = ["Flora","Ezreal","Sona","Vyane","Ryze"]
heros_picked = []
for hero in heros:
print("Your team has picked " + hero + ".")
heros.remove(hero)
heros_picked.append(hero)
print("These are the hero your team has picked:\n")
for i in heros_picked:
print(i)
print("Here are the heros left:\n")
for i in heros:
print(i)
我想让列表heros里的全部元素都到列表heros_picked里面:
但是为什么结果是这样:
Your team has picked Flora.
Your team has picked Sona.
Your team has picked Ryze.
These are the hero your team has picked:
Flora
Sona
Ryze
Here are the heros left:
Ezreal
Vyane
它隔一个处理一个
请各位大佬指教! |
|