KnowledgeBoat Logo

Computer Science

In Python, the program execution begins with first statement of __main__ segment.

Python Functions

1 Like

Answer

True

Reason — The Python interpreter starts the execution of a program from top-level statements. The top-level statements are part of main program, __main__ .

Answered By

2 Likes


Related Questions