I read that everything in Python is an Object i.e. it can contain reference variables and methods. However reference variables also point to Objects.
So let us say I have the following code ->
a = "Hello"
This creates an Object, but where is "Hello" Stored. We need some fundamental data type that is neither an Object nor a reference variable correct?