Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

วิธีการนำเข้าโมดูล Python ให้เส้นทางแบบเต็ม?


วิธีที่ง่ายที่สุดในการอิมพอร์ตโมดูล Python กำหนดพาธแบบเต็มคือการเพิ่มพาธไปยังตัวแปรพาธ ตัวแปรพาธประกอบด้วยไดเร็กทอรีล่าม Python ค้นหาโมดูลที่นำเข้าในไฟล์ต้นฉบับ

ตัวอย่าง

import sys
sys.path.append('/foo/bar/my_module')
# Considering your module contains a function called my_func, you could import it:
from my_module import my_func
# Or you could import the module as a whole,
import my_module