What is the default initial value of an integer variable in Python?
Python doesn't allow you to reference an undefined variable, and trying to do so will raise a NameError. Often, when you create a variable that contains an integer, you will also assign some value to it.
>>> x = 42