Mastery 17 - Lists and Tuples
I have already worked with lists in WSQ07. What is the difference between lists and tuples? Both of them are ordered sequence of items that are separated by commas and they are written between brackets (for lists) or parenthesis (for tuples). Items in lists can be modified but items in tuples cannot be modified. Tuples are usually used to protect data while lists are usually used to stores data that can be provided by the user.















