當前位置:成語大全網 - 新華字典 - python collections counter的值怎麽取出來

python collections counter的值怎麽取出來

使用counter類的items()函數即可,Python3程序如下:

for?each?in?count.items():#假設存在counter類的count

(a,b)=each

print(a,b.sep='\t',end='\n',file='./test.txt')