溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Pyhon學(xué)習(xí)筆記3:模組(引用第三方模塊)

發(fā)布時(shí)間:2020-05-27 10:43:32 來源:網(wǎng)絡(luò) 閱讀:671 作者:91ctt 欄目:軟件技術(shù)

模組更通俗的講叫類庫或者模塊,在實(shí)際開發(fā)中,會使用到系統(tǒng)的標(biāo)準(zhǔn)模塊或者第三方模塊。例如,與時(shí)間有關(guān)的是系統(tǒng)的time塊,文件操作相關(guān)的是os模塊,使用selenium實(shí)現(xiàn)的web自動化測試,使用的是selenium擴(kuò)展塊。

  1. 引用模塊:
    import  ...

  from .. import...

  舉例:輸出系統(tǒng)時(shí)間

 

import time

print(time.ctime())

結(jié)果:

======================= RESTART: D:/selenium/test/5.py =======================

Thu Nov  3 15:08:13 2016

>>> 

如果確定只引入time模塊下的ctime方法,則可以直接使用 from time import ctime

from time import *

print(ctime())

sleep(2)

print(ctime())

輸出結(jié)果:

======================= RESTART: D:/selenium/test/5.py =======================

Thu Nov  3 15:12:57 2016

Thu Nov  3 15:12:59 2016

>>> 

2模塊間的調(diào)用

新建一個(gè)模塊,在該模塊下創(chuàng)建兩個(gè)文件pub.py華為count.py

文件 pub.py:

def add(a,b):

    return a+b

文件count.py:

from pub import add

print(add(4,5))

打印結(jié)果:

===================== RESTART: D:/selenium/test/count.py =====================

9

>>> 

3.跨目錄模塊調(diào)用

文件模塊目錄:

project/

|--model/

  |--pub.py

|--count.py

cout.py代碼:

from model.pub import add

print(add(4,5))

4.進(jìn)一步討論跨目錄調(diào)用

文件目錄:

project/

|--model/

  |--count.py

  |--new_count.py

|--test.py

count.py文件代碼:

class A():

    def add(self,a,b):

       return a+b

new_count.py文件代碼

from count import A

class B(A):

    def sub(self,a,b):

        return a-b

st =B().add(2,5)

print(st)

test.py文件代碼:

import sys

sys.path.append("./model")

fome model import new_count

test = new_count.B()

test.add(2,5)


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI