w3resource

Python: Sum the length of the names of a given list of names after removing the names that starts with an lowercase letter

Python Lambda: Exercise-22 with Solution

Write a Python program that sum the length of the names of a given list of names after removing the names that starts with an lowercase letter. Use lambda function.

Sample Solution:

Python Code :

sample_names = ['sally', 'Dylan', 'rebecca', 'Diana', 'Joanne', 'keith']
sample_names=list(filter(lambda el:el[0].isupper() and el[1:].islower(),sample_names))
print("Result:")
print(len(''.join(sample_names)))

Sample Output:

Result:
16

Visualize Python code execution:

The following tool visualize what the computer is doing step-by-step as it executes the said program:


Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program that multiply each number of given list with a given number using lambda function. Print the result.
Next:Write a Python program to calculate the sum of the positive and negative numbers of a given list of numbers using lambda function.

What is the difficulty level of this exercise?

Test your Python skills with w3resource's quiz


Python: Tips of the Day

Takes any number of iterable objects or objects with a length property and returns the longest one. If multiple objects have the same length, the first one will be returned

Example:

def tips_longest(*args):
  return max(args, key=len)

print(tips_longest('this', 'is', 'a', 'Python', 'Tutorial'))
print(tips_longest([1, 2, 3], [1, 2, 3, 4, 5], [1, 2]))
print(tips_longest([1, 2, 3], 'python'))

Output:

Tutorial
[1, 2, 3, 4, 5]
python