29 of 100 menu

Python Taskbook Level 3.9

Given a list of numbers, remove from it the numbers that have two or more zeros.

Find all numbers from 1 to 1000 whose sum of digits is 13. Write the result in the set.

Given a list:

[1, 2, 3]

Make it so that each element is repeated twice:

[1, 1, 2, 2, 3, 3]

Two lists are given:

lst1 = [1, 2, 3] lst2 = [4, 5, 6]

Loop through these lists and print their elements in each iteration as follows:

'1,4' '2,5' '3,6'
enru