15. Write a program to find the count of non-repeating characters.
str1 = input('Enter the string :')
for row in str1:
c = 0
for col in str1:
if row == col:
c+=1
if c > 1:
break
if c == 1:
print(row,end = " ")
Comments
Leave a comment