Course
Simulator
More
Premium
Log in
Python Function Reference
Functions
list
list
Return a list whose items are the same and in the same order as iterable's items.
Python 3.13
1
list
(
iterable
)
Examples
Python 3.13
1
list
(
'abc'
)
['a', 'b', 'c']