
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Remove All Duplicate Words from a Given Sentence in Python
Given a sentence. Remove all duplicates words from a given sentence.
Example
Input: I am a peaceful soul and blissful soul. Output: I am a peaceful soul and blissful.
Algorithm
Step 1: Split input sentence separated by space into words. Step 2: So to get all those strings together first we will join each string in a given list of strings. Step 3: now create a dictionary using the counter method which will have strings as key and their Frequencies as value. Step 4: Join each words are unique to form single string.
Example Code
from collections import Counter def remov_duplicates(st): st = st.split(" ") for i in range(0, len(st)): st[i] = "".join(st[i]) dupli = Counter(st) s = " ".join(dupli.keys()) print ("After removing the sentence is ::>",s) # Driver program if __name__ == "__main__": st = input("Enter the sentence") remov_duplicates(st)
Output
Enter the sentence ::> i am a peaceful soul and blissful soul After removing the sentence is ::> i am a peaceful soul and blissful
Advertisements