Skip to content

Instantly share code, notes, and snippets.

@fatosmorina
Created March 27, 2022 16:53
Show Gist options
  • Save fatosmorina/79ff0713b612c6acf99e46aed88e39dc to your computer and use it in GitHub Desktop.
Save fatosmorina/79ff0713b612c6acf99e46aed88e39dc to your computer and use it in GitHub Desktop.
my_list = [1, 1, 2, 3, 2, 3]
my_new_list = list(set(my_list))
print(my_list == my_new_list) # False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment