Getting Started - PANDAS Getting Started Flashcards
1
Q
Once Pandas is installed, import it in your applications by adding the import keyword:
A
import pandas
2
Q
Pandas is usually imported under the pd alias.
A
import pandas as pd
3
Q
Pandas package can be referred to as pd instead of pandas.
A
pd
4
Q
The version string is stored under __version__ attribute.
A
print(pd.__version__)
5
Q
EXERCISES - The official Pandas library is imported like this:
A
import pandas
6
Q
EXERCISES - What is a correct syntax for checking the version of the Pandas library?
A
print(pandas.__version__)
7
Q
EXERCISES - What is a correct way of importing Pandas as an alias?
A
import pandas as pd