name_list=['foster',"janet",'jessus','david']
count_dict={}
for i in name_list:
count_dict[i]="".join(name_list).count(i[0])
print count_dict
>>> def countfist(a):
... res = {}
... for i in a:
... res[i] = "".join(a).count(i[0])
... return res
...
>>> countfist(new_mystr)
{'and': 3, 'world': 1, 'itcastcpp': 2, 'itcast': 2, 'hello': 1}
>>>
>>> name_list=['foster',"janet",'jessus','david']
>>> countfist(name_list)
{'david': 2, 'foster': 1, 'janet': 2, 'jessus': 2}
>>>
Copyright © 2009-2022 www.kswsj.com 成都快上网科技有限公司 版权所有 蜀ICP备19037934号