在某些点上的字符串列表中的公共元素

时间:2015-06-19 10:25:15

标签: python

我在Python中有一个字符串列表:

['movie-about-trees', 'movie-about-birds', 'movie-about-grass']

我试图获得这些项目的共同元素(字符)但是有序的方式直到它们变得不同。

因此理想情况下输出应为:

movies-about-

此示例应该不匹配:

['bird-movie', 'movie-about-birds', 'movie-about-grass']

而且:

['movie-on-trees', 'movie-about-birds', 'movie-theaters']

应该给:

movie-

0 个答案:

没有答案