What do single and double leading underscores conventionally indicate for Python object members?
A single underscore is private, while a double underscore is public.
They determine whether a value stores an integer or a float.
Both forms explicitly declare a member public.
A single underscore indicates protected use, while a double underscore indicates private use.