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
list
(
iterable
)
Examples
Python 3.13
>>
>
list
(
'abc'
)
[
'a'
,
'b'
,
'c'
]