Any Python program can be imported as a module. # C:pythonhello.pyprint "Hello, world!"# C:testModule.pyimport syssys.path.append('c:/python')import hellomodules are extensions that can be imported into Python to extend its capabilities. You import modules with a special command called import. import math print math.floor(32.9) print int(math.floor(32.9))
Name (required)
email (will not be published) (required)
Website