python 列表中的列表 转换字典 (list of list of str) -> dict of {tuple of str: int}

比如把[['cola','juice','coffee','tea'],['cola','juice','tea','coffee'],['cola','juice','... 比如把
[['cola', 'juice', 'coffee', 'tea'],
['cola', 'juice', 'tea', 'coffee'],
['cola', 'juice', 'coffee', 'tea']]
转换成
{('cola', 'juice', 'coffee', 'tea'): 2,
('cola', 'juice', 'tea', 'coffee'): 1}
在编译器中
for i in a:
if(b.has_key(tuple(i))==False):
b[tuple(i)]=1
else:
b[tuple(i)]+=1
是可行的
可是不让用 print, input..怎么写函数来实行
展开
 我来答
yzyyz6ab
2012-11-17
知道答主
回答量:26
采纳率:0%
帮助的人:6.8万
展开全部
python3.2
a=[['cola', 'juice', 'coffee', 'tea'],['cola', 'juice', 'tea', 'coffee'],['cola', 'juice', 'coffee', 'tea']]
b={}
for i in a:
i=str(i)
b[i]=b.get(i,0)+1
print(b)
aa1ss2_2
2012-11-17 · TA获得超过397个赞
知道小有建树答主
回答量:178
采纳率:100%
帮助的人:197万
展开全部
不明白什么意思,需要input输入的是什么数据???
输入一个列表还是列表中的元素???
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式