Python Sets
What are Sets?
Sets are used to store multiple items in a single variable.
myset = {"bigsmoke", "isnt", "hacker"}
A set is a collection which is unordered and unindexed and do not allow duplicate values.
len()
We can use the function len(s...
bigsmoke.hashnode.dev4 min read