Dynamic Lists Dynamic lists are ways of using a blank list and adding or removing items to it as we go Blank lists EXAMPLE : MYAGENDA = [] Append a list .append will let us add whatever is in () to the list. EXAMPLE: myAgenda = [] def printList(): for item in myAgenda: print(item) while True: item = input("What's next on the Agenda?: ") myAgenda.append(item) printList() Removing Items from a List how using .remove will remove what is inside the (). EXAMPLE: myAgenda = [] def printList(): print() for item in myAgenda: print(item) print() while True: menu = input("add or remove?: ") if menu == "add": item = input("What's next on the Agenda?: ") myAgenda.append(item) elif menu == "remove": item = input("What do you want to re...