詩人の名前に使われる人気の動物は?/無名猫
 
t;りゅう", "リュウ",
"ドラゴン", "どらごん",
"グリフォン", "ぐりふぉん",
"フェニックス", "ふぇにっくす",
]


animal_counter = Counter()

for handle in handles:
for animal in animal_names:
if animal.lower() in handle.lower():
animal_counter[animal.lower()] += 1

for animal, count in animal_counter.most_common():
print(f"(): ()")


戻る   Point(2)