Data Analysis with Python - Numpy Introduction B

Tell us what’s happening:

The instructor needs an instructor. This question:
About how much memory does the integer 5 consume in plain Python?
32 bits
20 bytes
16 bytes
8 bits

while the right answer which is (28) is not one of the options !!! :slightly_smiling_face:

Challenge Information:

Data Analysis with Python - Numpy Introduction B

1 Like

it’s not asking about a precide value, it says “about”, so the right value is the nearest one

The question mentions approximately so answer should be close to the actual number. Also, in python sys.getsizeof() gives the memory szie of an integer. Good Luck!