The data structure for the Truck object is given below. What can be the methods for the object?
Colour
Weight
Model-Year
9.
Answers
Answered by
0
Answer:
import pandas as pd
Truck = pd.DataFrame(['Colour', 'Weight', 'Model_Year'])
for i in Truck:
print (Truck.loc[i])
Similar questions