Thank you for reaching out to Microsoft Q & A forum.
The error you're encountering is likely due to the CSV file being space separated rather than comma separated. To resolve this, please modify your code as follows:
data = pd.read_csv('seeds.csv', delim_whitespace=True)
This should allow the data to load correctly, and the remaining steps in your exercise should work as expected.
If you have found the answer provided to be helpful, please click on the "Accept answer/Upvote" button so that it is useful for other members in the Microsoft Q&A community.