I'm using Sublime Text to study python, but it does not support input
When running the following code with the sublime build:
velocidade = int(input("Digite a velocidade: "))
I get the following error:
Digite a velocidade: Traceback (most recent call last):
File "/Users/matheusbaumgart/Desktop/python/outros/blank.py", line 1, in <module>
velocidade = int(input("Digite a velocidade: "))EOFError: EOF when reading a line
Does anyone know a good solution for using direct input in the sublime?