Top index Wirbel home

::str

str(set(A) aset) - convert set into string
str(list(A) alist) - convert list to string
str(float) - convert float into string

str(set(A) aset) creates a string-representation of a set and is used mainly for print-Debugging.

str(list(A) alist) creates a string representation of alist, mainly usefull for debugging with print. If alist is null, the representation is "null".

@s create a standard string representation of a floating point number. The number is printed eight fractional digits.