Implement a toy in-memory database (using only the standard library, no frameworks) with progressively harder levels, each building on the previous: Level 1 – Basic key-field-value operations: - set(key: str, field: str, value: str) -> None — store a value under a two-level map (record key → field → value)…