Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 342 Bytes

File metadata and controls

9 lines (7 loc) · 342 Bytes

A list is a variable containing multiple values. It commonly used datatypes in programming similar to [[array]]s. A list is generally [[mutable]], that is we can add or remove elements in this list Example in [[Python]]

students_name = ["Loïc", "Alexia", "Youri", "Elodie"]
print(students_name[0]) # Loïc

#datatype