I\'m trying to get Sublime Text 3 (build 3049, if that matters) to run a Python script. A simple two liner
var = raw_input(\"Enter something: \")
print \"You
Sublime Text does not support inputting data into a program. For working with inputs you need to install a package called SublimeREPL. Follow this:
open Sublime Text >> CTRL + P
CTRL + P will open the Package control
Then follow the following steps to run your program;
It'll open a new window, where you can give your input and get the output.