Question
What is the purpose of `import pandas as pd`?
Select an option. Your answer will be checked instantly.
Correct Answer: A. To load the pandas module and give it the alias `pd`
Explanation:
`import` makes a module’s functionality available to the program. The alias `pd` provides a shorter conventional name for referencing pandas.
Leave a Reply