Code to output the first repeated character in given string?

后端 未结 9 2138
日久生厌
日久生厌 2021-01-21 15:23

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

9条回答
  •  不知归路
    2021-01-21 15:55

    The below code prints the first repeated character in a string. I used the functionality of the list to solve this problem.

          def findChar(inputString): 
              list = []
              for c in inputString:
                  if c in list:
                      return c
                  else:
                      list.append(c) 
          return 'None'    
    
          print (findChar('gotgogle'))
    

    Working fine as well. It gives the result as 'g'.

提交回复
热议问题