Python Function Reference

list
Return a list whose items are the same and in the same order as iterable's items.
Python 3.13
list(iterable)
Examples
Python 3.13
>>> list('abc')
['a', 'b', 'c']