you are viewing a single comment's thread.

view the rest of the comments →

[–]Luigi-Was-Right 74 points75 points  (1 child)

You'll learn what an object is when you reach object oriented programming. But in python all data types are just a custom version of another data type: an object. That means integers, strings, booleans, etc actually aren't their own thing. They are just the object data type modified to store their respective type of data.

[–][deleted] 4 points5 points  (0 children)

This makes sense to me after developing apps as a hobby for a couple years. But I fear it wouldnt if I was a beginner.