Posts

Showing posts with the label filter

Filter in Python

Image
Code Example ages = [5, 12, 17, 18, 24, 32] def myFunc(x):   if x < 18:        return False   else:        return True adults = filter(myFunc, ages) for x in adults:        print("You are Adult : ", x) Screenshot : Quiz Level 1 Quiz Level 2 Request Me