Your Machine
Parse TSV into Python Data
Python reads the text file line by line, splits on tabs, and builds a list
of clean employee dictionaries.
parse_output(raw_text) →
[
{"initials": "JRB", "name": "John Brown",
"department": "Sales", "branch": "001",
"active": true},
{"initials": "KLM", "name": "Kim Lee",
"department": "Warehouse", "branch": "003",
"active": true},
...
]