Skip to content

Instantly share code, notes, and snippets.

@ChaitanyaBaweja
Created June 22, 2020 12:42
Show Gist options
  • Save ChaitanyaBaweja/12c4ad05f56f0a7adcc3bfea7ed3e40b to your computer and use it in GitHub Desktop.
Save ChaitanyaBaweja/12c4ad05f56f0a7adcc3bfea7ed3e40b to your computer and use it in GitHub Desktop.
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