Instagram
youtube
Facebook
Twitter

Importing & Installation of Pandas Module

Installation of Pandas

  • Installation of pandas requires you to have python installed on your system.
  • Install it using the following command:
    C:\Users\Your Name>pip install pandas
    
  • If this command fails, then one can use a python distribution that has python libraries already installed like, Anaconda, Spyder, etc. 

Importing of Pandas

  • Pandas is a Python module that allows you to work with tabular data. Tabular data has many of the same features as SQL or Excel, but Pandas adds Python power.
  • Import the Pandas module using this command:
    import pandas

    or

    import pandas as pd