如何将后缀追加到文本文档本身中指定的列表中每行的末尾?

时间:2019-06-26 14:40:26

标签: python python-2.7

示例: 我有阿肯色州和一些县的清单,如下所示:

ar
randolph
franklin
lawrence
scott
sharp
carroll
greene
van buren
clay
montgomery
cleburne
fulton
polk
boone
madison
marion
baxter
searcy
stone
newton

状态是列表开头的两个字母的缩写。对于此示例,如何使这些县中的每个县都添加“,ar”,例如兰多夫,ar;富兰克林牛顿,阿尔等。

1 个答案:

答案 0 :(得分:1)

list_of_counties = ['ar', 'franklin', .....]
list_to_append = []

for county in list_of_counties:
   if len(county) == 2:
       abbreviation = ' ,' + county
   else:
       list_to_append.append(county + abbreviation)

缩写词在列表中排在首位。