Python set correspond à deux liste

lang1 = ['Python', 'C++', 'C']
lang2 = ['C++', 'C', 'Python']

set(lang1) == set(lang2) #true
Shutup & Copy