为了账号安全,请及时绑定邮箱和手机立即绑定

答案:利用冒泡排序完成!!!

name = ['Alice', 'Bob', 'Candy', 'David', 'Ellena']

score = [89, 72, 88, 79, 99]


for i in range(len(score) - 1) :

    for j in range(len(score) - i - 1) :

        if score[j] < score[j + 1] : 

            score[j], score[j + 1] =  score[j + 1] ,score[j]

            name[j], name[j + 1] =  name[j + 1] ,name[j]

            

print(name)



正在回答

3 回答

感觉各位都想复杂了,各种秀,这个案例只是展示list的元素替换而已

0 回复 有任何疑惑可以回复我~

# Enter a code

# coding:utf-8

names = ['Alice', 'Bob', 'Candy', 'David', 'Ellena']

scores = [89, 72, 88, 79, 99]


templateNames = []

templateScores = [89, 72, 88, 79, 99]


scores.sort(reverse=True)

print("降序排列后的成绩:" + str(scores))


index_Score = 0

index_TemplateScore = 0

for score in scores:

    index_TemplateScore = 0


    for templateScore in templateScores:

        if score == templateScore:

            templateNames.append(names[index_TemplateScore])

        index_TemplateScore += 1


print("排列后的名字:" + str(templateNames))


1 回复 有任何疑惑可以回复我~

s1 = set([1, 2, 3, 4, 5])
s2 = set([1, 2, 3, 4, 5, 6, 7, 8, 9])
print(s1 & s2)

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Python3 入门教程(新版)
  • 参与学习       155077    人
  • 解答问题       1084    个

python3入门教程,让你快速入门并能编写简单的Python程序

进入课程

答案:利用冒泡排序完成!!!

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信