0
Ballpark Orders challenge - EOF error
I'm getting an EOF error while trying to solve the Ballpark Orders challenge. Very new to python so I'm sure I'm just missing something silly like a semi colon or something but I've fought with this darned thing for almost an hour and I'm at a loss on what to do. Help, please? https://code.sololearn.com/casFUBG16l7z/?ref=app
3 Antworten
+ 4
According to the task description, we only need to get input once: All items are submitted in one string.
You can get input once before the loop, then use .split() to get list of items. Then iterate the list.
+ 2
I may have to circle back around to this. I don't think I properly understand how to pull out individual text from a long string. Looks like that is in upcoming lessons and I'm just trying challenges too soon. Thanks for your help, y'all!