Computer Science, asked by mohdsuheb01, 11 months ago

What are the various ways of creating list in python ?​

Answers

Answered by yarpita3510
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 gauravkindo121
3
  1. using append ( ) method
  2. using insert ( ) method
  3. using extend( ) method

Similar questions