33-2

Run Settings
LanguagePython
Language Version
Run Command
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 remove?: ") myAgenda.remove(item) printList()
Editor Settings
Theme
Key bindings
Full width
Lines