A better Python
input()
function.
Look what happens when your client wants to fix their typo, using the Python built-in input()
:
Now use BetterInput
:
from better_input import BetterInput
client = BetterInput()
result = client.input("Enter something: ")
print(result)