我有一组字符串,例如
my_prefix_what_ever
my_prefix_what_so_ever
my_prefix_doesnt_matter
我只是想找到这些字符串中最长的公共部分,这里是前缀。在上面的结果应该是
my_prefix_
琴弦
my_prefix_what_ever
my_prefix_what_so_ever
my_doesnt_matter
应该导致前缀
my_
Python中是否有一种相对轻松的方法来确定前缀(而不必手动遍历每个字符)?
PS:我正在使用Python 2.6.3。