Junior — Senior
What is the result of the program when computing the hash of a tuple
livecode
Task condition
Determine what value will be printed after executing the following program. Note that a tuple containing a list and a string is used as an argument to the hash function.
pair = ([1, 2, 3], 'asdsad')
print(hash(pair))