Basics of Python-7
Day 7
Set :
Set is an in-built data type in python. It is an unordered collection of data.
It is iterable
It is mutable
It has no duplicates
Let's solve a few problems on set :
Find the maximum and minimum in a Set :
s=([67,34,27,45,1])
prin...
priyachakraborty.hashnode.dev2 min read