Skip to content Skip to sidebar Skip to footer

Python Names And Variables

I know this was addressed probably a thousand times already and might be a really dumb question. But what happens exactly if you create a python variabel(name)? For example if yo

Solution 1:

x is a name. The value associated with that name is an int object representing 2. Anything else is an implementation detail, not specified by the language itself.


Post a Comment for "Python Names And Variables"