Python in Finance - Importing modules
How do I import panda modules after installing anaconda. I am unable to really follow the course because of this.
Rhoda
1 answers ( 0 marked as helpful)
Hi Rhoda!
Thanks for reaching out!
First, you have to install the module you need and then you have to import it. To install the
module pandas you have to use:
pip install pandas
Then you have to import it. You have to use:
import pandas
Hope this helps.
Best,
Martin