What should be the name of the Python file that define a module too.
Answers
Answered by
0
A module is a file containing Python definitions and statements. The file name is the module name with the suffix .py appended. Within a module, the module’s name (as a string) is available as the value of the global variable __name__.
Similar questions