使用Python,會import很多不同的函式庫,除了import下載的函示庫之外,也能import自己的函式庫。
開發時,不僅有很多版本且code會越來越多。
這時候就需要將code分門別類,讓code可讀。
才不會太久遠的code一時之間無法了解。
我們有這樣的檔案結構,package的資料夾專門放使用的函式。
main.py
package/
├──__init__.py
└──test.py
test.py
def print_hello_world():
print("hello_world")
main.py
# coding = utf-8
from package.test import print_hello_world
def main():
print_hello_world()
if __name__ == "__main__":
main()