Important Notice:

Course Content
Scope & Module in Python (Chapter-12) M3-R5
About Lesson

Module:-

                Module एक python file है जिसमें python variable, classes, function, statements or definition होते हैं

जैसे-      akit.py एक module है

Python module file का extension name .py होता है। इसका मतलब यह है कि python में जो file बनाते हैं वो एक module होती है।

      Python के एक module में दूसरे module के properties को use करने के लिए import keyword का प्रयोग किया जाता है।

Python में कुछ inbuilt Modules होते है जैसे कि , math, random हर module की अलग-अलग पहचान होती है math module में mathematics से related कुछ functions होते है जैसे कि, sin(), cos() और sqrt() इत्यादी

Python में Modules ये एक तरह का program ही होता है modules में function और classes होते है

Python में दो प्रकार के Modules होते है

  1. In-built Modules

  2. User-Defined Modules

 

 

Module:-

i. Module is a python file that contains python variables, classes, functions, statements or definitions.

Like- akit.py is a module

ii. The extension name of Python module file is .py. This means that the file created in python is a module.

iii. Import keyword is used in one module of Python to use the properties of another module.

iv. There are some inbuilt modules in Python such as math, random. Each module has a different identity. Math module contains some functions related to mathematics such as sin(), cos() and sqrt() etc.

v. Modules in Python are a type of program. Modules contain functions and classes.

There are two types of modules in Python

  1. In-built Modules

  2. User-Defined Modules

error: Content is protected !!