我有一个包含人名的 txt 文件。
我打开它并希望使用过滤器和 lambda 函数仅获取具有用户输入长度的名称。
问题是我得到的列表是空的[]。
names_file = open('names.txt').read().split()
user_choice = input("Enter name length: ")
print(list(filter(lambda c : len(c) == user_choice, names_file)))
问题是什么 ?
繁星淼淼
一只名叫tom的猫
相关分类