๐ Beginning Python Programming / Module: Controlling logic flow
while ...:
๐ Beginning Python Programming / Controlling logic flow / while ...:
guests = [] while True: value = input("Please input a guest name, or 'q' to quit: ") if value == "q": break guests.append(value) print(guests)