1.

Write a small python code to drop a row from data frame labeled as 0.

Answer»

# Drop rows with label 0

df = df.drop(0)

print(df )



Discussion

No Comment Found

Related InterviewSolutions