Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Last active October 17, 2019 13:15
Show Gist options
  • Save NMZivkovic/adbcdd884998efabd64443b5c3389b8c to your computer and use it in GitHub Desktop.
Save NMZivkovic/adbcdd884998efabd64443b5c3389b8c to your computer and use it in GitHub Desktop.
chat = list()
while True:
message = input("Message: ")
if single_command == "exit chat":
break
chat.append(message)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment