+ 3
Where can i use lists datatype in python to create a program..
2 Antworten
+ 7
Lists is a collection of data so if you wanna store data and manipulate lists are handy.
Example: If you wanna use a class scores and do operations store thwm in a list. You can find average (sum/len), median(sorted(list)[len/2], etc.
+ 1
Anywhere ! list is a default data type of python