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