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 none Answer : # 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]))…

This Question has been answered. 

Please Subscribe to See Answer or To Get Homework Help