What are three reasons Python programs are generally shorter than C programs?
Where does Python get it’s name?
From the BBC show, “Monty Python’s Flying Circus”
Is Python an interpreted language?
Yes, which means you can interact with it in real time as it does not need to be compiled.
Where is the Python interpreter usually located?
/usr/local/bin/python
if you put /usr/local/bin in your Unix search path, you can invoke the interpreter by typing “python”
What does typing CTRL-D into the primary prompt of the python interpreter do?
CTRL-D is an end-of-file character which tells the interpreter to exit with a status of 0