BaşlayınÜcretsiz Başlayın

The filter() function

Let's do some filtering! You will be given three corresponding tasks you have to complete. Use lambda expressions! And remember: the filter() function keeps all the elements that are mapped to the True value.

The variables nums, string and spells are available in your workspace.

Bu egzersiz

Practicing Coding Interview Questions in Python

kursunun bir parçasıdır
Kursu Görüntüle

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

# Exclude all the numbers from nums divisible by 3 or 5
print(nums)
fnums = filter(____)
print(list(fnums))
Kodu Düzenle ve Çalıştır