Hello All,
I'm trying to gather statistical info on a Python program, such as:
-memory usage of dict objects, lists
-time it takes to retrieve a string key from a dict object
-time spent to create symbol tables
-how many times a symbol table is accessed during program execution
-etc.
I tried Python profiler, but didn't help much. It only shows how much time it takes to run a particular function, and how many times...
Any help would be appreciated. Thanks!
I'm trying to gather statistical info on a Python program, such as:
-memory usage of dict objects, lists
-time it takes to retrieve a string key from a dict object
-time spent to create symbol tables
-how many times a symbol table is accessed during program execution
-etc.
I tried Python profiler, but didn't help much. It only shows how much time it takes to run a particular function, and how many times...
Any help would be appreciated. Thanks!