Tuesday 7 November 2023

Python Coding challenge - Day 63 | What is the output of the following Python code?

 


Code - 

l=[1, 0, 2, 0, 'hello', '', []]

print(list(filter(bool, l)))

Solution - 

Step 1: Define a list l with various elements:

l = [1, 0, 2, 0, 'hello', '', []]

This list contains a mix of integers, strings, an empty string, and an empty list.


Step 2: Use the filter() function with bool as the filtering function:

filtered_list = filter(bool, l)

In this step, the filter() function is applied to the list l. The bool function is used as the filtering function. The bool function converts each element of the list into a Boolean value (True or False) based on its truthiness. Elements that evaluate to True are kept, and elements that evaluate to False are removed.


Step 3: Convert the filtered result into a list:

filtered_list = list(filtered_list)

The filter function returns an iterator, so to get the final result as a list, we use the list() constructor to convert the filtered result into a list.


Step 4: Print the filtered list:

print(filtered_list)

This line prints the filtered list to the console.


Step 5: The output is as follows:

[1, 2, 'hello']

In the filtered list, all elements that evaluate to False (0, empty string, and empty list) have been removed. The resulting list contains only the elements that are considered "truthy" according to Python's boolean conversion rules.

0 Comments:

Post a Comment

Popular Posts

Categories

AI (27) Android (24) AngularJS (1) Assembly Language (2) aws (17) Azure (7) BI (10) book (4) Books (118) C (77) C# (12) C++ (82) Course (62) Coursera (180) Cybersecurity (22) data management (11) Data Science (95) Data Strucures (6) Deep Learning (9) Django (6) Downloads (3) edx (2) Engineering (14) Excel (13) Factorial (1) Finance (6) flutter (1) FPL (17) Google (19) Hadoop (3) HTML&CSS (46) IBM (25) IoT (1) IS (25) Java (92) Leet Code (4) Machine Learning (44) Meta (18) MICHIGAN (5) microsoft (4) Pandas (3) PHP (20) Projects (29) Python (753) Python Coding Challenge (231) Questions (2) R (70) React (6) Scripting (1) security (3) Selenium Webdriver (2) Software (17) SQL (40) UX Research (1) web application (8)

Followers

Person climbing a staircase. Learn Data Science from Scratch: online program with 21 courses