简体   繁体   中英

How to pre-load modules into python scripts?

I would like to automatically import some Python modules that I regularly use into my scripts. Eg instead of having to type every time

     import numpy as np
     import pandas as pd
     import matplotlib.pyplot as plt

have them automatically imported in every script.

Any tips on how to do this will be appreciated.

Thanks,

Anna

使用PYTHONSTARTUP环境变量指向已编写导入内容的脚本。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM