最新回答 / 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...
2020-10-25
最新回答 / 一馋小和尚
a = r'''"To be, or not to be":that is the question.Whether it\'s nobler in the mind to suffer.''''
2020-10-22
最赞回答 / 一地几毛
可以是可以,但是多此一举啊language = 'Phtyon'result = template.format (language)可以缩写成一句result = template.format ('Phtyon')你这个是多个变量要套进去才用得着这种形式
2020-10-19