Im using python in the terminal and I switched from >>> to C> doing a demo. the problem being is Im not told how to switch from 'C>' back to '>>>'. I dont want to just close the terminal and 'kill' the process entirely. Im new and I hope someone gets a chuckle out of this but can maybe please help me out. thanks :D
Python's interpreter prompt is the value of the system variable
sys.ps1
. So, to set it to >>>, do:Just out of curiosity, how did you set it to C>?