Q:

What Does The __ Name __ Do In Python?

0

What Does The __ Name __ Do In Python?

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Answer:

The __name__ is a unique variable. Since Python 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__.”

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Python Interview Questions and Answers

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Does Python have a main()method?... >>
<< What is the difference between list and tuples in ...