কম্পিউটার

একটি প্রদত্ত বাক্য থেকে সমস্ত সদৃশ শব্দ মুছে ফেলার জন্য পাইথন প্রোগ্রাম।


একটি বাক্য দিয়েছেন। একটি প্রদত্ত বাক্য থেকে সমস্ত ডুপ্লিকেট শব্দগুলি সরান৷

উদাহরণ

Input: I am a peaceful soul and blissful soul.
Output: I am a peaceful soul and blissful.

অ্যালগরিদম

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.

উদাহরণ কোড

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)

আউটপুট

Enter the sentence ::> i am a peaceful soul and blissful soul
After removing the sentence is ::> i am a peaceful soul and blissful

  1. বিএসটি থেকে সমস্ত নোড মুছে ফেলার প্রোগ্রাম যা পাইথনে পরিসরে নেই

  2. পাইথনে স্ট্রিং-এ সমস্ত সংলগ্ন ডুপ্লিকেটগুলি সরান

  3. পাইথনে সাজানো অ্যারে থেকে সদৃশগুলি সরান

  4. পাইথন প্রোগ্রাম একটি প্রদত্ত স্ট্রিং এর সমস্ত স্থানান্তর প্রিন্ট করতে