Python Taskbook Level 5.3
Ask the user to enter two integers via the console. Fill the list with integers from the minimum number entered to the maximum.
Ask the user to enter a date in the format year-month-day. Determine the day of the week that corresponds to this date.
Ask the user to enter a year. Determine whether it is a leap year or not.
Write a program that will generate the following string:
'54321'
There is a certain list given, for example, this one:
[1, 2, 3, 4, 5, 6]
Swap pairs of elements in this list:
[2, 1, 4, 3, 6, 5]