I create list and set with range. Set unpacks range, list doesn`t
>>> my_list = [range(5)] >>> my_set = set(range(5)) >>> my_list [