$ python
Python 2.7.5 (default, Aug 25 2013, 00:04:04)
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>
如果要编辑源文件,则需要在菜单栏中选择 File -> New Window。这时打开的新窗口就是源文件窗口。在里面写好你的 python 代码后,点击菜单栏上的 Run -> Run Module(或者按键盘上的F5),按提示保存后,就会运行这个源文件,输出结果将会在之前的 python shell 窗口中显示。对于初学者来说,这还是比较方便的开发方式。