Wells wrote: > I'm not quite understanding why a tuple is hashable but a list is not. > Any pointers? Thanks! A hash is created from the object. If the object is mutable then the hash can change. Lists are mutable but tuples aren't.