Write a python function that takes input a string and removes duplicates from the same
Topic: Write a python function that takes input a string and removes duplicates from the same
Solution
foo = input("Enter String : ") print("Duplicates Removed","".join(set(foo)))
List all Python Programs