In Python, this works with ``` my_complex . real my_complex . imag ``` To be consistent with Source and SICP, we will not include the dot notation in Python §1-4. Instead, I suggest we introduce primitive functions. ``` real(my_complex) imag(my_complex) ```