I build very big dictionary (2^20 elements) in python using dictionary generator expression (i'm using IDLE for this). The process is very long because of every element needs hard computing. It is possible to get known progress of this operation?

I understand that it is easy to do if don't use generator expressions, but nevertheless this question is interesting I think.

有帮助吗?

解决方案

If you use yield to write a generator function instead of just using a generator statement, you could put logging or some other sort of feedback before every yield statement.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top