In Python, if lists are used to store items then why it is not a data type?
Answers
Answered by
1
Explanation:
Python comes with a collection of built-in data types that make common data-wrangling operations easy. Among them is the list, a simple but versatile collection type. With a Python list, you can group Python objects together in a one-dimensional row that allows objects to be accessed by position, added, removed, sorted, and subdivided.
Similar questions