I have an issue with SublimeREPL when trying to pass arguments into my python program. I am using python 2.7 with Sublime 3 on Ubuntu 14.04 OS.
When I provide SublimeREPL with input and hit enter, nothing happens. It seems to lock up and stop anything thing from happening. I have been looking online to find solutions to this problem and I can't seem to find anything relating to this problem.
Its seems that I need a reputation of 10 to post the image, here is my input
age = raw_input("How old are you? ")
height = raw_input("How tall are you? ")
weight = raw_input("How much do you weigh? ")
print "So, you're %r old, %r tall and %r heavy." % (
age, height, weight)
output on SublimeRepl
How old are you? 5
10
5
a12d
user input is not being taken.
Thank you for your time