List vs Tuple in Python
List are mutable and Tuples are immutable. Both can contain different data types.
If we want to add or remove any element in tuple then we will have to first convert it into list then apply the changes and have to convert back it to the tuples. Howev...
pythonchallenge.hashnode.dev1 min read