search
HomeBackend DevelopmentPython TutorialWhat is a Python module and how to define and use it

1. What is a module

We learned about variable types (integer, string, list, tuple...etc.). Then I also learned about function types, which actually means combining some variables and then implementing some functions. In fact, modules are the same. A module combines functions, variables, etc. to form a Python file. The name of this file is also the name of the module. It can be said that the module is the essence of the Python code.

What is a module?
Module: It is a python file. When the python file is used as a module, the file name is the module name, demo.py( demo is the module name)

Function: You can call the code and functions of other python files, which can be implemented and used more flexibly, and add various effects

How to use: We pass import (key words) to import the module

2. Classification of modules

Modules in Python are divided into three categories:

1. Built-in modules

2. Third-party modules

3. Custom modules

(1) Built-in module

Description:

Built-in module: The module that comes with Python after installing it can be used directly, such as time, os, re, random...

Note: When using it, you need to import

For example: import time

(2) Third-party modules

Instructions:

Third-party modules are not included in Python and need to be installed externally into Python. Yes, these modules are written by some big guys, we can install and use them, such as pygame, requests... etc.

##Installation:

pip -- python's own downloader

install -- download
uninstall -- uninstall

Prerequisite: pip does not set python environment variables If so, then this configuration cannot be found, so remember to configure the environment variables when downloading python. The default python download library is to use pip. If the python environment is not set up, pip cannot be used-->Repair/Reinstall

Suggestion: pycharm download module (first select cmd to download and then pycharm)

Method: Enter cmd, directly pip install module name

For example:

What is a Python module and how to define and use it

The download is completed

pip related instructions:

#Download module

pip install module name

#View module

pip list

#Uninstall module

pip uninstall module name

#Update pip Sometimes the version of pip is too low and the new library cannot be upgraded

python -m pip install --upgrade pip -i

# Accelerate through (cdn) proxy, download third-party modules:

pip install library name --default-timeout=100 -i https://pypi.tuna.tsinghua.edu.cn/simple

pip install requests --default-timeout=100 -i https://pypi.tuna.tsinghua.edu.cn/simple

(3 ) Custom module
As the name suggests, it is a module that you make yourself and use it yourself. Of course, for us beginners, the modules we write ourselves are very common, and those third-party modules It is also written by individuals, but those people are big guys or some teams, and we still have to practice for another two and a half years.

3. Use of modules

Import module:

import module name

(import is Import meaning)

Use module:

import module name

Module name.Function name()

Single import

from module name import function name/variable name

For example: from random import randint

Import all functions of this module

from module name import *

Note: After importing, we can use these functions directly, just There is no need to use the module name.function name() method, just use the function name(). However, this method has a big disadvantage, that is, when we directly use the names of these functions or variables, It may conflict with the names of the variables or functions we define, resulting in overwriting. It is generally not recommended to use this method

Give the module an alias

If the module name is too long and difficult to remember, you can give it an alias through as

import module name as alias

We can use the alias of this module directly later. , for example: import random as r

r.random()

4. Custom module

We can define a module ourselves and then execute the file Import it and use it directly, see the example:

This is a module I customized. I put this module file in the same directory as the executable file. When we want to use it, we can just import it directly.

What is a Python module and how to define and use it

def fun(n):
    if n==1:
        return 1
    return n*fun(n-1)
 
a=99
 
def qj():
    print('这个是我的模块')

What is a Python module and how to define and use it

Just import it very directly

5. Judgment of modules and executable files

The module is a py file and can be executed. When we import a module, the system has actually executed the module in advance and then executed the main file, but I want to make some of the module If this part is not executed, then I have to use a method to determine whether it is a module. If it is a module, then this part of the content will not be executed.

Method:

print(__name__) # If you run the code and the output is __main__, it means that this file is an executable file. If it returns a module name, it means that this is an executable file. The module is used

#模块代码
def fun(n):
    if n==1:
        return 1
    return n*fun(n-1)
print(__name__)
a=99
 
def qj():
    print('这个是我的模块')
#执行文件的代码
import demo
 
print(__name__)
print(demo.fun(4))

Output result:

What is a Python module and how to define and use it

The demo is output first. This demo is actually the name of the module (you can see that the module It is executed first, and then the main file is executed), and __main__ means that this is an executable file, so we can use this method to determine whether a file is a module or an executable file.

For example:

#模块代码
def fun(n):
    if n==1:
        return 1
    return n*fun(n-1)
if __name__=='__main__':
    print(123456)

When I call this module, 123456 will not be output, because this is a module.

The above is the detailed content of What is a Python module and how to define and use it. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
详细讲解Python之Seaborn(数据可视化)详细讲解Python之Seaborn(数据可视化)Apr 21, 2022 pm 06:08 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

详细了解Python进程池与进程锁详细了解Python进程池与进程锁May 10, 2022 pm 06:11 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

Python自动化实践之筛选简历Python自动化实践之筛选简历Jun 07, 2022 pm 06:59 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

归纳总结Python标准库归纳总结Python标准库May 03, 2022 am 09:00 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于标准库总结的相关问题,下面一起来看一下,希望对大家有帮助。

分享10款高效的VSCode插件,总有一款能够惊艳到你!!分享10款高效的VSCode插件,总有一款能够惊艳到你!!Mar 09, 2021 am 10:15 AM

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

Python数据类型详解之字符串、数字Python数据类型详解之字符串、数字Apr 27, 2022 pm 07:27 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

详细介绍python的numpy模块详细介绍python的numpy模块May 19, 2022 am 11:43 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

python中文是什么意思python中文是什么意思Jun 24, 2019 pm 02:22 PM

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.