0

I am using sublime text3 for Python on Ubuntu 18.04. But I can't print anything when I am taking input. Like I can print this

print("Hello")

but I can't print this

test= int(input())
print(test)

I give input but it doesn't show any output. My python build code is

{
"cmd": ["/usr/bin/python3", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python"
}

But it doesn't work

It works

I have followed this Sublime Text 2 console input But not working. Here is the screenshot using SublimeRELP package using sublimeREPL

1 Answers1

0

In this problem, I use sublimeREPL as like this. But again this problem occurs. Accidently I found that I was pressing my num Enter but it worked with my general Enter button. After pressing the general Enter button, it works fine.