Wednesday 11 July 2018

Program Components in Python

Cited from the book "Python How to Program"

"""
Program components in Python are called functions, classes, modules and packages. Typically, Python programs are written by combining programmer-defined (programmer-created) functions and classes with functions or classes already available in existing Python modules. A module is a file that contains definitions of functions and classes. Many modules can be grouped together into a collection, called a package.
"""

No comments:

Post a Comment