0 votes
in Python by

Can you please help to clarify what does the __ Name __ do in Python Language?

1 Answer

0 votes
by

The __name__ is a unique variable. Since Python Language doesn’t expose the main() function, so when its interpreter gets to run the script, it first executes the code which is at level 0 indentation.

To see whether the main() gets called, we can use the __name__ variable in an if clause compares with the value “__main__.”

Related questions

0 votes
asked Aug 29, 2020 in Python by Robindeniel
0 votes
asked Aug 30, 2020 in Python by sharadyadav1986
...