List, Dictionary & Tuples
Lists, dictonaries & tuples are used to store collections of objects. They are differentiated from each other by the delimiter they use:
A list : [ ]
["one", "two"]
A dictionary : { }
{1: "one", 2: "two"}
A...
blog.vicentereyes.org2 min read