header files

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Rayhan Mahmood
    New Member
    • Mar 2014
    • 1

    header files

    I am new python learner.In c or c++ we use header files.What about python header files?
  • bvdet
    Recognized Expert Specialist
    • Oct 2006
    • 2851

    #2
    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:
    Code:
    import math
    See Python documentation on modules.

    Comment

    Working...