Question: Place source code in your shell and test: data = 10 sys.getsizeof(data) data = 100000 sys.getsizeof(data) data = 100000000 sys.getsizeof(data) what happens? Place source code

Place source code in your shell and test:

data = 10

sys.getsizeof(data)

data = 100000

sys.getsizeof(data)

data = 100000000

sys.getsizeof(data)

  • what happens?

Place source code in your shell and test:

data = 10.0

sys.getsizeof(data)

data = 100000.5

sys.getsizeof(data)

data = 100000000.5

sys.getsizeof(data)

  • what happens?

Using Python IDE

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!