Created
June 22, 2020 12:42
-
-
Save ChaitanyaBaweja/12c4ad05f56f0a7adcc3bfea7ed3e40b 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
entered_list = input("Enter a list of numbers separated by space: ").split() | |
print('Intermediate_list: ',entered_list) | |
num_list = list(map(int,entered_list)) | |
print('Number List: ',num_list) | |
print('List sum:', sum(num_list)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment