Bright Tutorials
Home
Courses
Solutions
Videos
Q&A
Blogs
Downloads
Login
Enquiry
Home
Solutions
CBSE
Class 11
Informatics Practices
Lists in Python
Question 1
CBSE
Class 11
Informatics Practices
Question 38 of 80
Lists in Python — Question 1
Back to all questions
1
Question
Question 1
What are the various ways to create a list?
Answer
The various ways of creating a list are :
Using Square Brackets [].
Using the list() constructor.
Using list comprehensions.
Appending Elements.
Using the extend() method.
Using slicing.
Previous
Question 15
Next
Question 2