Trouble With User Inputs In Sublime Text
I'm trying to code a simple calculator using Python (2) in Sublime Text that consists of asking the user for the first number, the operation, then the second number. However, every
Solution 1:
Sublime text doesn't support input from the console, it's just an out console, anyways there's a way around, you can use SublimeREPL. You get a full IDLE like console embedded right into the sublime text!
Quotting what you get:
Launch python in local or remote(1) virtualenv.
Quickly run selected script or launch PDB.
Use SublimeText2 Python console with history and multiline input.
You can install it from package control(I guess you already have package control! If not get it from here).
Post a Comment for "Trouble With User Inputs In Sublime Text"