Skip to content

Instantly share code, notes, and snippets.

@calthoff
Created March 21, 2018 23:17
Show Gist options
  • Select an option

  • Save calthoff/7634c579e6764b52343e78caefcd06d8 to your computer and use it in GitHub Desktop.

Select an option

Save calthoff/7634c579e6764b52343e78caefcd06d8 to your computer and use it in GitHub Desktop.
authors = []
def collect_authors():
answer = None
while answer != "q":
answer = input("Who is your favorite author?")
authors.append(answer)
print(authors)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment