w3resource

Python: Find numbers divisible by nineteen or thirteen from a list of numbers using Lambda

Python Lambda: Exercise-17 with Solution

Write a Python program to find numbers divisible by nineteen or thirteen from a list of numbers using Lambda.

Sample Solution:

Python Code :

nums = [19, 65, 57, 39, 152, 639, 121, 44, 90, 190]
print("Orginal list:")
print(nums) 
result = list(filter(lambda x: (x % 19 == 0 or x % 13 == 0), nums)) 
print("\nNumbers of the above list divisible by nineteen or thirteen:")
print(result)

Sample Output:

Orginal list:
[19, 65, 57, 39, 152, 639, 121, 44, 90, 190]

Numbers of the above list divisible by nineteen or thirteen:
[19, 65, 57, 39, 152, 190]

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 to find the second lowest grade of any student(s) from the given names and grades of each student using lists and lambda.
Next: Write a Python program to find palindromes in a given list of strings using Lambda.

What is the difficulty level of this exercise?

Test your Python skills with w3resource's quiz


Python: Tips of the Day

Converts a string to kebab case

Example:

from re import sub

def tips_kebab(s):
  return sub(
    r"(\s|_|-)+","-",
    sub(
      r"[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+",
      lambda mo: mo.group(0).lower(), s))

print(tips_kebab('sentenceCase'))
print(tips_kebab('Python Tutorial'))
print(tips_kebab('the-quick_brown Fox jumps_over-the-lazy Dog'))
print(tips_kebab('hello-world'))

Output:

sentencecase
python-tutorial
the-quick-brown-fox-jumps-over-the-lazy-dog
hello-world