思大迪【答疑老师】 • 1年前
n, m = input().split() for i in range(int(m), int(n) - 1, -1): print(chr(97 + i - 1))
评论:
因为索引从0开始,要取得对应的索引要-1