在Sublime Text运行Python.How to run Python code from Sumblime Text

The following solutions come from stackoverflow .

Tools -> Build System -> (choose) Python then:

To Run:

      Tools -> Build

      -or-

      Ctrl + B

      CMD + B  (OSX)

This would start your file in the console which should be at the bottom of the editor.

To Stop:

       Ctrl + Break or Tools -> Cancel Build

You can find out where your Break key is here: http://en.wikipedia.org/wiki/Break_key.

Note: CTRL + C will NOT work.

What to do when Ctrl + Break does not work:

Go to:

Preferences -> Key Bindings - User

and paste the line below:

{"keys": ["ctrl+shift+c"], "command": "exec", "args": {"kill": true} }

Now, you can use ctrl+shift+c instead of CTRL+BREAK

原文地址:https://www.cnblogs.com/huanlegu0426/p/how-do-i-run-python-code-from-sublime-text-2.html