1)设置:
工具(tool)-->编译系统(build-system)-->设置为自动,或者直接选择python
2)编辑代码
print("hello python.")
3)执行
按ctrl+B,可在sublime界面下方弹出结果。
准备代码,保存为test.py
msg = input("please input: ")
print("output: ", msg)
1)按ctrl+shift+p
快捷键呼出一个输入框,输入Install Package,回车,在新出现的输入框里输入SublimeREPL安装。
2)点击Tools->sublimeREPL->python->python run current file
,这时候就像IDLE一样,会弹出一个新的窗口,而且是可交互的,可以输入。
3)结果:
4)设置快捷键
点击preferences->key bindings
添加: 重启sublime,现在可以直接按F5来运行。
{ "keys":["f5"],
"caption": "SublimeREPL: Python - RUN current file",
"command": "run_existing_window_command",
"args": {"id": "repl_python_run","file": "config/Python/Main.sublime-menu"}
}