+ 5
What is the error in my code??
I'm doing Data Type for Python, Lesson 14.1. And this is my code: https://code.sololearn.com/ctPdGbk3v89K/?ref=app Please, Explain me why is the error and how can I solve the error.
2 Respuestas
+ 5
Your "shape" is off by 1. You have 3 heights, 3 ages, 4 names. This confuses pandas and generates an error. To fix it, drop a name, or add a height and a age
+ 5
Steven M Infinite Thanks!