1. 程式人生 > 程式設計 >python模組匯入的方法

python模組匯入的方法

模組在python程式設計中的地位舉足輕重,熟練運用模組可以大大減少程式碼量,以最少的程式碼實現複雜的功能。

下面介紹一下在python程式設計中如何匯入模組:

(1)import 模組名:直接匯入,這裡匯入模組中的所有與函式;

import configparser
import time
import sys

這裡的模組也可以是自己編寫的指令碼名稱,如:

#hello.py
def hello1():
print("hello world!")
import hello

(2) from 模組名 import 函式名1[,函式名2,...] : 匯入函式中的特定函式;

from requests import get
from requests import post
from platform import systey

(3)from 模組名 import *:匯入所有函式, * 代表所有函式;

from wxpy import *

(4)import 模組名 as 別名:別名匯入;

import configparser as cf
import time as T
import sys as sy

以上就是本次介紹的全部相關知識點,感謝大家的閱讀和對我們的支援。