What are the various ways of creating list in python ?
Answers
Answered by
28
Answer:
Create a Python List. Defining a List in Python is easy. ...
Add Elements to a List. One can use the method insert, append and extend to add elements to a List. ...
Slice Elements from a List. Python also allows slicing of the lists. ...
Search the Lists and find Elements. ...
Delete Elements from the List. ...
Python List Operators
Answered by
3
- using append ( ) method
- using insert ( ) method
- using extend( ) method
Similar questions