Exercise: string to length


  • Given a list of strings, create an iterable that will provide the length of each string.
  • If the input is ['moon', venus', 'jupyter'] then the resulting iterable should return 4, 5, and 7.