- Python is a computer programming language often used to build websites and software, automate tasks, and conduct data analysis.
 - Python is a general-purpose language, meaning it can be used to create a variety of different programs and isn’t specialized for any specific problems.
 
Shathana. S.R. Answered question July 7, 2023
				In Python, a list is a built-in data structure used to store a collection of items or elements. It is an ordered and mutable sequence, meaning you can change, add, or remove elements after the list is created.
Lists are defined using square brackets [] and can contain elements of different data types, such as integers, strings, floats, and even other lists. Each element in a list is assigned an index, starting from 0 for the first element, allowing for easy access and manipulation.
Riya Answered question July 7, 2023
				