If you have Python and PIP already installed on a system, then installation of Pandas is very easy.
Install it using this command:
C:\Users\
Your Name>pip install pandas
If this command fails, then use a python distribution that already has Pandas installed like, Anaconda, Spyder etc.
Once Pandas is installed, import it in your applications by adding the import
keyword:
import pandas
Now Pandas is imported and ready to use.
import pandas
mydataset = {
'cars': ["BMW", "Volvo", "Ford"],
'passings': [3, 7, 2]
}
myvar = pandas.DataFrame(mydataset)
print(myvar)
Try it Yourself »
Pandas is usually imported under the pd
alias.
alias: In Python alias are an alternate name for referring to the same thing.
Create an alias with the as
keyword while importing:
import pandas as pd
Now the Pandas package can be referred to as pd
instead of pandas
.
import pandas as pd
mydataset = {
'cars': ["BMW", "Volvo", "Ford"],
'passings': [3, 7, 2]
}
myvar = pd.DataFrame(mydataset)
print(myvar)
Try it Yourself »
The version string is stored under __version__
attribute.
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!