Given two tables, write a Python script to perform an inner join and handle missing values.
Use the provided accounts and account_attributes tables. Return only records with matching account IDs, replacing missing output values with clear default labels.
account_id, account_name, segment, contact_emailUnnamed account, Unknown, and Not providedaccount_id ascending| Column | Type | Description |
|---|---|---|
| account_idPK | INT | Unique account identifier |
| account_name | VARCHAR(100) | Display name of the account |
| Column | Type | Description |
|---|---|---|
| account_idPK | INT | Account identifier associated with the attributes |
| segment | VARCHAR(50) | Account segment |
| contact_email | VARCHAR(150) | Primary contact email address |