I\'m trying to find the first repeated character in my string and output that character using python. When checking my code, I can see I\'m not index the last character of my co
You should use range(0, len(letters))
instead of range(0, len(letters) - 1)
because range
already stops counting at one less than the designated stop value. Subtracting 1 from the stop value simply makes you skip the last character of letters
in this case.
Please read the documentation of range: https://docs.python.org/3/library/stdtypes.html#range