Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含一些数据的文本文件。现在我在其他文本文件文件中有一个关键字列表。
现在我想进行加工,以便我可以找出第二个文本文件中有多少关键字在第一个文件中。
我不是一个大程序员,所以有什么简单的方法可以做到这一点
如果两个文件都不大,这可能是一个解决方案
f=open("textfile") f2=open("keywordfile") text=f.read().split() keyword=f2.read.split() print list(set(text)&set(keyword))
注:以上代码为python