I am new python learner.In c or c++ we use header files.What about python header files?
header files
Collapse
X
-
Tags: None
-
The import statement in python would be the equivalent of the #include statement in C. For example, if you need the functions defined in the math module:
See Python documentation on modules.Code:import math
Comment