python 在python中创建计数器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 在python中创建计数器相关的知识,希望对你有一定的参考价值。

import pandas as pd

data = pd.read_csv("data/stackoverflow_sample.csv.gz")
data.columns

from collections import Counter

tags_counter = Counter()

for tags in data.Tags:
    tags_counter.update(tags.split())
    
tags_counter.most_common(10)

以上是关于python 在python中创建计数器的主要内容,如果未能解决你的问题,请参考以下文章

python内存管理&垃圾回收

垃圾回收机制

python学习之内存机制

垃圾回收机制

Python的垃圾回收机制

Python 垃圾回收