Day 10

I am learning Python for Automation and documenting my progress here

TIL about Lists and that that string of numbers from Lost is now “an example of a list of numbers in ascending order” canon. And even though I have seen every episode of The Office more than 3 times, I just realized where this list of friends is fro…

TIL about Lists and that that string of numbers from Lost is now “an example of a list of numbers in ascending order” canon.
And even though I have seen every episode of The Office more than 3 times, I just realized where this list of friends is from.

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.