CBSE Class 12 Informatics Practices
Question 36 of 167
Python Pandas — I — Question 1
Back to all questionsimport pandas as pd
Reason — The syntax to import a library with an alias is import library_name as alias. Therefore, the statement import pandas as pd is used to import the pandas library in Python with the alias 'pd'.