Home > Article > Backend Development > what are python code blocks
What are python code blocks?
Python programs are constructed from code blocks. A block is the text of a Python program that is executed as a unit.
Code block: A module, a function, a class, a file, etc. are all a code block.
Each command entered interactively is a code block.
What is interactive mode? That is, when we enter the Python interpreter in cmd, each line of code is a code block, for example:
And for two functions in a file, they are also Two different code blocks:
Related recommendations: "Python Tutorial"
The above is the detailed content of what are python code blocks. For more information, please follow other related articles on the PHP Chinese website!