Python Forum
How do you find the length of an element of a list?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How do you find the length of an element of a list?
#14
I gave up and just unlocked the solution. I hate to do it, but it's how you learn sometimes. I wouldn't have ever figured it out on my own. At least the positive is that I learned something new. I have completed most of the challenges successfully anyway, so unlocking one once in a while won't kill me.

def word_lengths(lst):
  return [len(x) for x in lst]
Reply


Messages In This Thread
RE: How do you find the length of an element of a list? - by pav1983 - Jun-13-2020, 12:06 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Removing all strings in a list that are of x length Bruizeh 5 3,332 Aug-27-2021, 03:11 AM
Last Post: naughtyCat
Question Recursion and permutations: print all permutations filling a list of length N SantiagoPB 6 3,454 Apr-09-2021, 12:36 PM
Last Post: GOTO10
  How to find difference between elements in a list? Using beginner Basics only. Anklebiter 8 4,515 Nov-19-2020, 07:43 PM
Last Post: Anklebiter
  To find the index of the first occurrence of the key in the provided list Angry_bird89 4 3,373 Jun-20-2020, 06:53 PM
Last Post: Angry_bird89
  Find first letter from a list DariusCG 3 2,636 Nov-27-2019, 11:08 PM
Last Post: ichabod801
  How to assign a "Score" variable to each element in a list Reta 5 5,461 May-16-2019, 01:13 PM
Last Post: ichabod801
  Find 'greater than' items in list johneven 2 4,552 Apr-05-2019, 07:22 AM
Last Post: perfringo
  Extracting list element with user input valve 1 2,638 Mar-11-2019, 07:37 PM
Last Post: Yoriz
  Print The Length Of The Longest Run in a User Input List Ashman111 3 3,271 Oct-26-2018, 06:56 PM
Last Post: gruntfutuk
  maximum and minimum element from the list and return output in dict MeeranRizvi 1 3,800 Jan-02-2017, 02:12 PM
Last Post: ichabod801

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020