Back to Lesson
CSV Processing
Break apart delimited structures utilizing split.
Instructions
- Given.
csv_line = "Alice,30,Engineer,New York" - Split the line into a list using the commaas the delimiter.
, - Check ifis in the resulting list, and if so, print
"Engineer"."Found engineer"
main.py
main.py
Ctrl + Enter