Underscore (_) in PythonIn this article, we will discuss what the role of Single Underscore (_) is and Double Underscore (__). When the user writes code in Python, in some cases they use single Underscore (_) and in some cases they use double underscore (__). The following is the some of the cases where user uses underscore.
Let’s see some examples of these cases. Using in InterpreterThe interpreter of Python will store the last expression value in the ‘_’. Example: For Ignoring the Values Here, we will use Underscore (_) for ignoring the values. Example: Here, And underscore (_) is used for ignoring value 50. Using Underscore (_) to Declare the Variable and FunctionPython language does not support private variables or functions, so, the users cannot force private variables and function of somethings but they can call them directly from the other modules. Example: The users can use the trailing underscore (_) for avoiding the conflicts with Python keywords and built-ins. Example: The above double underscore (__) is used for avoiding the conflicts with attributes names between the names. If the users are writing the function name “__display” in the class, the name will then be modified in “_ClassName__display” form. Example: In some cases, users use this form as __init__. For Separating Digits of Number Lateral ValueThe underscore (_) can be used for separating the digits of number lateral value Example: Output: 5000000 As Localization (l10n) and International (i18n) functionsThis is just a principle and not any syntactic function. The underscore (_) is used for binding the i18n/l10n to the variable with underscore. Its concept is taken from C convention. Underscore Prefix with Python Variables Means?The names in the class, which have leading underscore (_) are for indicating to the other users that the attribute or function is intended to be private in the program. The users are recommended that they should use single underscore (_) for semiprivate and double underscore (__) for fully private variables. In the following example, we will show the difference between Single Underscore (_) and Double Underscore (__) prefixes. Example: Output: --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-10-4f3b78146b9f> in <module> 7 mc = UserClass() 8 print(mc._semi_private) ----> 9 print(mc.__fully_private) AttributeError: 'UserClass' object has no attribute '__fully_private' In the above code, the user tried to access the fully private variables and in output, they will get the error saying that the UserClass does not have any attribute called ‘__fully_private’. ConclusionIn this article, we have discussed the use of single underscore (_) and double underscore (__) in python with different example. |
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/263510.html