Coding Exercise : Dataset Dimensions
Question: Write a script to load a dataset named ecodivin.csv into a DataFrame. Display the number of rows and columns using .shape.
Python code:
df = pd.read_csv("ecodivin.csv")
print("Dataset Shape (Rows, Columns):", df.shape)