what all component can a python program contains
Answers
Answered by
1
Answer:
A complete Python program is executed in a minimally initialized environment: all built-in and standard modules are available, but none have been initialized, except for sys (various system services), __builtin__ (built-in functions, exceptions and None) and __main__. The latter is used to provide the local and global namespace for execution of the complete program.
Answered by
2
Answer:
expression
Statements
Comments
Function
Blocks and indentation
Explanation:
Similar questions