13 of 100 menu

Python Taskbook Level 2.3

Given two words, check that the last letter of the first word matches the first letter of the second word.

Given a string, find the position of the third zero in the string.

The numbers are given, separated by commas:

'12,34,56'

Find the sum of these numbers.

The date is given in the following format:

'2025-12-31'

Convert this date to the following dictionary:

{ 'year' : '2025', 'month': '12', 'day' : '31', }

Given a dictionary:

{ 'a': 1, 'b': 2, 'c': 3, 'd': 4, }

Get a set of its values:

{1, 2, 3, 4}
enru