最新回答 / 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