思路:找出所有兄弟单词构成列表,排序并输出指定位置的兄弟单词。
def isBrother(word): """判断是否为兄弟单词的函数""" return sorted(word) == sorted(l[-2]) and word != l[-2] l = input().split() lb =[i for i in l[1:-2] if isBrother(i)] # 所有兄弟单词的列表 print(len(lb)) if int(l[-1]) <= len(lb): # k不超过lb长度 print(sorted(lb)[int(l[-1])-1])