Multiple items can be stored in a single variable using lists. — Square brackets are used to make a list, with commas separating items. Lists are one of four built-in Python data structures for storing collections of data; the other three are Tuple, Set, and Dictionary, all of which have different properties and application List items are ordered, changeable, and allow duplicate…