最赞回答 / 专业资深程序员劝退师
错误写法print("dongdong age" {}.format(age))正确写法print("dongdong age {}".format(age))
2021-02-09
最赞回答 / my藤上风铃
# Enter a code# coding:utf-8names = ['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 = 0index_TemplateScore...
2021-01-27