Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Last active October 17, 2019 13:15
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
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