Hacking with Python

To explore how Python operates, take a look at how the print command can be used to display “Python is for hacking.” Pull up the Python command line. Once you see the >>> prompt, key in: print(“Python is for hacking.”) Hit Enter to end the command. Right after that, Python will display your requested text on the following line. ................
................