Hi everyone ints_list = [1, 2, 3, 4, 3, 2] ints_list1 = list(set(ints_list)) print(ints_list1) # [1, 2, 3, 4] This python code can be used to remove same elements from a python list. Have a nice day! :) #day47

Loading...