Lab # 9 Advanced Topics

“.Advanced Topics” lab was an interesting lab that consisted of tuples that challenged my knowledge in python. Tuples is a sequence of immutable Python objects. Tuples are sequences, just like lists. The differences between tuples and lists are, the tuples cannot be changed unlike lists and tuples use parentheses, whereas lists use square brackets. By implementing tuples in my code I can become more efficient in writing python codes.
1234