我在 python 中有两个非常长的列表,第一个是英文单词,第二个是西班牙语单词。因为第二个列表是从第一个列表生成的,所以很多元素是重复的,所以我需要一种方法来将这些元素与相应的翻译进行分组。
例如:
#my two lists
a=['car', 'house', 'wagon', 'rat', 'mouse', 'cart']
b=['carro', 'casa', 'carro', 'raton', 'raton', 'carro']
#the resulting list must be something like this
c=['car, wagon, cart: carro', 'house: casa', 'rat, mouse: raton']
提前致谢
ps 这不是作业,这是我正在尝试创建的一个小程序来学习词汇