I want to know if you can find a letter by entering the position of it so it gives you the letter back.
In other words, I want a function that is the opposite of the find function?
P.S. if myString is a string and I input the position of the letter I want the letter in that position to come back.
You could use indexing like: (python)
Or specific method like "myString.charAt()" (Java) (comment by a_horse_with_no_name). That depends on language.