You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey guys, I'm pretty excited about your course and job you have done to make it, that's really thorough work.
But sometimes I'm getting a bit confused when seeing double underscores in functions/variables names in various 100DaysOfWeb chapters.
I know that those are used as super-private objects or relative, but can you guys explain me as experts, what is reason to not use a single forward underscore as conventional privacy in python but use double underscores?
For instance, please take a look at a code snippet below (chapter 33-36). Can't we use just self._result name instead of self.__result here to mark that it should be a private one?
Hi, the reason we don't cover this deeply in the course is we are just reusing that python-switch library from github. So we didn't discuss the internals.
But the reason for __thing and why this is better than a convention of just _thing is that the runtime makes it truly hidden, not just devs thinking to themselves it should be hidden. For example:
print(switch.__no_result)
will result in the error:
AttributeError: type object 'switch' has no attribute '__no_result'
That is much stronger just some convention that you might or might not know that you should not touch that. You can do whatever you want with switch._no_result from Python. That's the idea. :)
Hey guys, I'm pretty excited about your course and job you have done to make it, that's really thorough work.
But sometimes I'm getting a bit confused when seeing double underscores in functions/variables names in various 100DaysOfWeb chapters.
I know that those are used as
super-private
objects or relative, but can you guys explain me as experts, what is reason to not use a single forward underscore as conventional privacy in python but use double underscores?For instance, please take a look at a code snippet below (chapter 33-36). Can't we use just
self._result
name instead ofself.__result
here to mark that it should be a private one?Do you think it's worth to mention that somewhere in a course? thx
The text was updated successfully, but these errors were encountered: