কম্পিউটার

একটি প্রদত্ত পূর্ণসংখ্যা অ্যারের সমস্ত স্বতন্ত্র উপাদান প্রিন্ট করার জন্য পাইথন প্রোগ্রাম।


একটি পূর্ণসংখ্যা অ্যারে দেওয়া. অ্যারের উপাদানগুলি সদৃশ হতে পারে৷ আমাদের কাজ হল স্বতন্ত্র মানগুলি প্রদর্শন করা৷

উদাহরণ

Input::A=[1,2,3,4,2,3,5,6]
Output [1,2,3,4,5,6]

অ্যালগরিদম

Step 1: input Array element.
Step 2:  Then pick all the elements one by one.
Step 3:  then check if the picked element is already displayed or not.
Step 4: use one flag variable which initialized by 0.if the element is displayed earlier flag variable is 1 and if the element is not displayed earlier flag variable is 0.
Step 5: Display distinct elements. 

উদাহরণ কোড

# Python program to print all distinct
# elements in a given array
def distinctelement(A, n1):
   print("Distinct Elements are ::>")
      for i in range(0, n1):
         c = 0
         for j in range(0, i):
            if (A[i] == A[j]):
               c = 1
               break
         if (c == 0):
            print(A[i])
# Driver code
A=list()
n1=int(input("Enter the size of the List ::"))
print("Enter the Element of List ::")
for i in range(int(n1)):
   k=int(input(""))
   A.append(k)
distinctelement(A, n1)

আউটপুট

Enter the size of the List ::4
Enter the Element of List ::
1
2
2
4
Distinct Elements are ::>
1
2
4

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

  2. পাইথনে একটি অ্যারেতে স্বতন্ত্র উপাদান গণনা করুন

  3. পাইথন প্রোগ্রাম একটি প্রদত্ত অবস্থান পর্যন্ত একটি অ্যারে বিপরীত করতে

  4. একটি তালিকার সমস্ত সাবলিস্ট প্রিন্ট করতে পাইথন প্রোগ্রাম।