How to show result of python script in a console when running from ST editor?

admin

Administrator
Staff member
I'm new to Sublime Text so am unfamiliar with its internals so far. From what I could tell the problem could be something related to <a href="http://ptomato.wordpress.com/2012/02/09/geek-tip-running-python-guis-in-sublime-text-2/">this</a>.

I have a python script

Code:
var = raw_input("Enter something: ")
print "You entered ", var

which asks for input, waits for it, then prints it out in windows console prompt.

How do I make ST3 upon "building" to show the results in a console window?