Parse Log Line
A medium Python interview practice problem on DataDriven. Write and execute real python code with instant grading.
- Domain
- Python
- Difficulty
- medium
- Seniority
- L4
Problem
Given a log line 'LEVEL timestamp message' (spaces are single-space separators; message may contain spaces), return a dict with keys 'level', 'timestamp', 'message' (everything after the second space).
Summary
One line. A dozen fields hidden inside.
Practice This Problem
Solve this Python problem with real code execution. DataDriven runs your Python code in a real environment and grades it automatically.