This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bytes type empty + scaling notes | |
24 int NA | |
28 long NA | |
37 str + 1 byte per additional character | |
52 unicode + 4 bytes per additional character | |
56 tuple + 8 bytes per additional item | |
72 list + 32 for first, 8 for each additional | |
232 set sixth item increases to 744; 22nd, 2280; 86th, 8424 | |
280 dict sixth item increases to 1048; 22nd, 3352; 86th, 12568 | |
64 class inst has a __dict__ attr, same scaling as dict above |