Quick actions

cmd+k|ctrl+k

Navigation

Languages

33-1

Snippet info

Language

Python

Visibility

public

Author

python100

Created

2025-08-01T17:20:56.523446Z

Updated

2025-08-01T18:33:09.349482Z

myAgenda = []
def printList():
  print() # место между содержанием списка
  for item in myAgenda:
    print(item)
  print() # место между содержанием списка
  
while True:
  item = input("What's next on the Agenda?: ")
  myAgenda.append(item)
  printList()
  
  
INFO