33 of 100 menu

Python Taskbook Level 4.3

Given a list, remove every fifth element from it.

Given two numbers, get a list of common factors of these numbers.

Two numbers are given:

txt1 = 12345 txt2 = 45678

Get a tuple of digits that are in both numbers:

(4, 5)

Given a list:

[ [ [11, 12, 13], [14, 15, 16], [17, 17, 19], ], [ [21, 22, 23], [24, 25, 26], [27, 27, 29], ], [ [31, 32, 33], [34, 35, 36], [37, 37, 39], ], ]

Find the sum of the elements of this list.

enru