I am writing python code in sublime (versions are latest). But when i try to input a value from user it just takes the value and does nothing.
This is a simple example of that,
name = input('Please enter your name: ')
print('Hello ' + name + '!' )
output screen
Please enter your name: xyz
_ <-- after that cursor blinks here and nothing happens