#Author: James Tam #Version: October 12, 2025 #Learning: Creating a new list dynamically using the repetition operator SIZE = 5 aList = [0]*SIZE #Create new list with identical elements print(aList) #Elements identical up to here but they can be changed later. aList[0] = 7 aList[SIZE-1]= 13 print(aList)