Tag: snippets
All the articles with the tag "snippets".
-
Difference between sort() and sorted() in python
The primary difference between the list sort() function and the sorted() function is that the sort() function will modify the list it is called on.
-
Find unique elements in python list
Using set() property of Python, we can easily check for the unique values. Set only stores a value once even if it is inserted more then once.