| 174 | |
| 175 | print("Example 13") |
| 176 | class FixedCustomer: # No parent class |
| 177 | first_name = Field() |
| 178 | last_name = Field() |
| 179 | prefix = Field() |
| 180 | suffix = Field() |
| 181 | |
| 182 | cust = FixedCustomer() |
| 183 | print(f"Before: {cust.first_name!r} {cust.__dict__}") |