Python Taskbook Level 2.7
Given a symbol, find out whether this symbol is uppercase or lowercase.
Given a certain number, for example, this one:
123789
Remove all odd digits from this number. In our case, we get the following result:
28
Given a cortege with a date:
('2025', '12', '31')
Convert this date to the following dictionary:
{
'year' : '2025',
'month': '12',
'day' : '31',
}