30/09/2018, 18:42
Cách import lib python
Em mới làm quen với python. Tuy nhiên không biết nên import kiểu nào cho hợp lý để đạt được hiệu suất tốt nhất
Ex:
Import ngay từ đầu ở 1 nơi nhưng mỗi def chỉ sử dụng GẦN NHƯ 1 LẦN
import numpy as np
import scipy.interpolate as interpolate
from math import sqrt
from uuid import uuid1
def a():
# use np
pass
def b():
# use interpolate
pass
def c():
# use sqrt
pass
def d():
# use uuid1
pass
hay là thằng nào dùng thì import cho thằng đó
def a():
import numpy as np
# use np
pass
def b():
import scipy.interpolate as interpolate
# use interpolate
pass
def c():
from math import sqrt
# use sqrt
pass
def d():
from uuid import uuid1
# use uuid1
pass
Cách nào tối ưu hơn và ưu nhược điểm của mỗi cách?
Bài liên quan
Đây là quy tắc import của PEP-8
PEP 8 -- Style Guide for Python Code
The official home of the Python Programming Language