考察字符串的递归。 n = int(input())start = 'A'ans = startfor _ in range(1, n): start = chr(ord(start) + 1) ans = ans + start + ansprint(ans)