Introduction to Python

You can create python files using emacs. ... M-x load-file python-mode.elc) You could even make the *.py file executable and add the following text to top of the file to make it runable: #!/usr/bin/python . The Basics . A Code Sample x = 34 - 23 # A comment ................
................