import pandas as pd
print(df.head()) # Print the head of the data
import pandas as pd
print(df.tail()) # Print the tail of the data
import pandas as pd
print(df.info()) # Print information about the data
import pandas as pd
print(df.shape) # Print the shape of the data
import pandas as pd
print(data.describe()) # Print a description of the data
import pandas as pd
print(df.values) # Print the values of the data
import pandas as pd
print(df.columns) # Print the column index of the data
print(df..index) # Print the row index of the data