python分类统计字符中空格,快速/高效地计算Python中空格分隔的字符串列表

本文讨论了在处理包含大量文本文件的列表时,使用itertools库的Counter函数与迭代计数两种方法的效率。通过 profiling 工具比较,探讨了在处理海量数据时哪种方法更优,并介绍了常用的内存监控和系统监控工具。

Given the input:

x = ['foo bar', 'bar blah', 'black sheep']

I could do this to get the count of each word in the list of space delimited string:

from itertools import chain

from collections import Counter

c = Counter(chain(*map(str.split, x)))

Or I could simple iterate through and get:

c = Counter()

for sent in x:

for word in sent.split():

c[word]+=1

[out]:

Counter({'bar': 2, 'sheep': 1, 'blah': 1, 'foo': 1, 'black': 1})

The question is which is more efficient if the input list of string is extremely huge? Are there other ways to achieve the same counter object?

Imagine it's a text file object that has billions of lines with 10-20 words each.

解决方案

The answer to your question is profiling.

Following are some profiling tools:

print time.time() in strategic places. (or use Unix time)

heapy tracks all objects inside Python’s memory (good for memory leaks)

For long-running systems, use dowser: allows live objects introspection (web browser interface)

examine Python bytecode with dis

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符  | 博主筛选后可见
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值