49 of 100 menu

Python Taskbook Level 5.9

Output to the console the name of the day of the week of the last day of the current month.

Given a string of text, get the percentage of each character in the text as a dictionary, where the keys are the characters and the values ​​are their percentages.

Given a string with a number:

'1234567'

Separate the triplets of numbers with spaces, starting from the end of the number. In our case, we should get the following:

'1 234 567'
enru