Write a program to create a list of the cubes of only the even integers appearing in the input list (may have elements of other types also) using the following: a.) ‘for’ loop b.) list comprehension

by

Last updated on Nov 5, 2022
Python Practicals (Question 8)

Input

# a)
test = []
n = int(input('enter the length of list \n'))
for j in range(0, n):
    vals = input('enter the values: ')
    test.append(vals)
cubes = []
for i in test:
    if str(i).isdigit():
        if int(i) % 2 == 0:
            i = int(int(i) ** 3)
            cubes.append(i)
print('The cubed values of all the even digits in the given string using for loop are: ')
print(cubes)

# b)
list_comp = [int(cube)**3 for cube in test if cube.isdigit() and int(cube) % 2 == 0]
print('The cubed values of all the even digits in the given string using list comprehension are: ')
print(list_comp)

Output

enter the length of list 
6
enter the values: 3
enter the values: 4
enter the values: 3
enter the values: 2
enter the values: 5
enter the values: 2
The cubed values of all the even digits in the given string using for loop are: 
[64, 8, 8]
The cubed values of all the even digits in the given string using list comprehension are: 
[64, 8, 8]

How useful was this post?

5 star mean very useful & 1 star means not useful at all.

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.

Tags: