Skip to content

Instantly share code, notes, and snippets.

@ChaitanyaBaweja
Last active June 23, 2020 08:05
Show Gist options
  • Select an option

  • Save ChaitanyaBaweja/456f970d2e469277415a0a208353a000 to your computer and use it in GitHub Desktop.

Select an option

Save ChaitanyaBaweja/456f970d2e469277415a0a208353a000 to your computer and use it in GitHub Desktop.
total_input = []
print("Enter Student Names: ")
while True:
name = input()
if name:
total_input.append(name)
else:
break
print('Total input received :')
print(total_input)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment