Day 10
I am learning Python for Automation and documenting my progress here
TUPLES vs LISTS
The literal syntax of tuples is shown by parentheses () whereas the literal syntax of lists is shown by square brackets [] . Lists has variable length, tuple has fixed length. List has mutable nature, tuple has immutable nature. List has more functionality than the tuple.