Last active
June 23, 2020 08:05
-
-
Save ChaitanyaBaweja/456f970d2e469277415a0a208353a000 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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