How are you running python? Do you run the python (or python3) command in a shell? Something like this in a Windows PowerShell?
Output:
PS C:\> python
Python 3.12.4 (tags/v3.12.4:8e8a4ba, Jun 6 2024, 19:30:16) [MSC v.1940 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> x = 3
>>> print(X^Z
Or are you using IDLE? IDLE is and IDE that comes as part of most Python distributions. It is not a good IDE, but it is better than typing directly into the Python interractive interpreter. If using IDLE, the IDLE shell understands that ctrl+z is an undo. IDLE also has a file editor.
Thonny is a better IDE than IDLE, but you have to install Thonny separately. Oops! Take that back. Looks like you can install Thonny and it will install Python 3.10 for you. Handy for new programmers.
I like Visual Studio Code. If you do programming with Visual Studio, you will find VSCode familiar.