The Underscore in Python [“_” vs “__”]
The single underscore in Python “_” is used to either make a variable different from a Python keyword such as in float_=8, or to indicate that it should be used in a private context such as in _var=8. The double underscore in Python “__” (called “dunder“) is used to make an instance attribute or method … Read more