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..怎么写函数来实行 展开
[['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..怎么写函数来实行 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询