Listcars = ['Honda', 'KIA', 'BMW', 'Lada']print(cars)print(cars[0])print(cars[1])print(cars[-1])print(cars[-2])['Honda', 'KIA', 'BMW', 'Lada']HondaKIALadaBMW[ ] squares brackets must be used to create a listNotice how index starts from 0, not 1 Modifying elements in ListHere, I have replaced 'Honda' with 'Toyota' in the listcars = ['Honda', 'KIA', 'BMW', 'Lada']print(cars)cars[0] = 'Toyota'print..