list(set(T) aset) - converts a set into a list list(string astring) - convert string to list of characters
list(set(T) aset) converts a set aset into a list by constructing a list
with conaining all elements from aset. This is exactly
the same as aset.items()
list(string astring) returns the string astring as list of characters.