sort into folders

This commit is contained in:
anon
2024-03-10 16:02:52 +01:00
parent b0f6752c44
commit fa1d1f5cfd
123 changed files with 0 additions and 0 deletions
C&C++
Misc.
Python
Vim
Webdev

9
Python/int_memory.py.py Normal file

@ -0,0 +1,9 @@
from memory_profiler import memory_usage
def create_base_ints():
base_ints = [i for i in range(10000)]
return base_ints
if __name__ == '__main__':
mem_usage = memory_usage(create_base_ints)
print(f"Memory usage: {mem_usage[0]:.2f} MiB")