I want to stop an input. Where the user inputs a string of a certain length then python "presses enter for them," and cuts the input short.
print("[Play] Cheats Credits ", end='')
inp=input("")
if inp=="d":
print("Play [Cheats] Credits ", end='')
inp=input("")
if inp=="a":
...
I would like it to take the input instantly after the user inputs a single letter. Thanks.