In order to improve readability for your Python scripts, only use underscores for your variable names. For example:
_ = 5
__ = 9
print (_+__)
___ = "hello"
____ = "world"
print (___ + " " + ____)
Conversation
variable names can be arbitarily long in Python, so knock yourself out.
2
>>> import sys
>>> sys.maxsize
9223372036854775807


