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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Pandas is usually imported under the pd alias.

A

import pandas as pd

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Pandas package can be referred to as pd instead of pandas.

A

pd

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

The version string is stored under __version__ attribute.

A

print(pd.__version__)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

EXERCISES - The official Pandas library is imported like this:

A

import pandas

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

EXERCISES - What is a correct syntax for checking the version of the Pandas library?

A

print(pandas.__version__)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

EXERCISES - What is a correct way of importing Pandas as an alias?

A

import pandas as pd

How well did you know this?
1
Not at all
2
3
4
5
Perfectly