I am using Ubuntu 16.04 with Sublime3 to write Python code.However when I create a code like this:
test=input("Example: ")
if test=="A":
print("It is A!")
And try to run it, it asks me for input but when i type the input, instead of printing what I said it does nothing.However when I run the same code in the terminal, it works perfectly.What should I do to fix this?