What is List?

mylist = ["faras", "Tata", "Fauziah"]

Note: There are few lists method to change order, but in common: element in order will never be changed.

list1 = ["A", "B", "C"]
list2 = [1, 2, 3, 4, 5]
list3 = [True, False. False]
lists = ["MySkill", 25, False, 23, "student"]

What is List (2)?

mylist = list(("apps", "os", "version")) # must use double square brackets
print(mylist)

Enable also to use construction list () when we make new list.