How to write python program to print first recurring character in given string else none ?

Question : Python program to print first recurring character in given string else noneAnswer :# Python program to print first recurring character in given string else none str=input("Enter a string : ").lower() list=[] for i in range(len(str)): list.append(str.count(str[i])) if 2…

This Question has been answered. 

Please Login or Register to See The Answer