Tuples tuple = (element1, element2,…) an immutable ordered collection / grouping of items advantages of using tuples: faster than list, safer tuples can be used as dictionary key, example coordinates as key (x, y). List cannot be used as dict key for <item> in <tuple>: loop through the tuple tuple[<index>]…