KnowledgeBoat Logo

Computer Science

Which of the following will create an empty list?

  1. L = [ ]
  2. L = list(0)
  3. L = list( )
  4. L = List(empty)

Python List Manipulation

25 Likes

Answer

L = [ ]

L = list( )

Answered By

8 Likes


Related Questions