Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,104 questions

40,777 answers

573 users

How to print the distinct elements of an array (list) in Python

1 Answer

0 votes
def printDistinct(arr):
    asize = len(arr) 
    for i in range(asize): 
        total = 0
        for j in range(asize): 
            if arr[i] != arr[j]:
                total = total + 1
        if (total == asize - 1):
            print(arr[i])
 
 
arr = [3, 5, 9, 1, 7, 8, 1, 9, 0, 3, 9];   
 
printDistinct(arr)
 
 
 
'''
run:
  
5
7
8
0
         
'''

 





answered May 3, 2020 by avibootz
...