I want to make my python code run a different function as you type, one function assigned per letter.
I would have the code for each letter
def a():
# The letter A code
def b():
# The letter B code
Then the input (something like this)
letters = input("Input Text:")
print (letters)
And when it prints letters
it runs the "a" function for a, "b" function for b, and so on.
I'm pretty new to python so any help is appreciated.