Hello Pytho13!!

,
I hope you are well. I know how to solve this problem!
Make a for loop, with the i starting from 1 and ending to 4. Code: for i in range(5):
And inside the loop, put days[i] into weekdays. If you don't understand what I mean,
I mean like when the i value is zero you put the 1st item of "days"(Monday) into the list "weekdays".
By the way here is the code to do that:
for i in range(5):
weekdays.append(days[i])
It will go on until it reaches Saturday.
Now for the next list "weekends".
Make another for loop with i starting from 5 to 6 because days[5] and days[6] are the weekend days.
Code for the for loop: for i in range(5, 7, 1):
Next you need to actually put the weekdays into the "weekends" list.
Now that you have got your for loop, we need to put something inside it!
It's pretty much the same code last time except a little different.
The i starts at 5, and days[5] is Saturday. We need to put Saturday into the "weekends" list.
And the i ends at 6, and days[6] is Sunday. We also need to put Sunday into the "weekends" list.
So the code we need to put inside this for loop is:
weekends.append(days[i])
When the for loop starts, the i will be 5. weekends.append(days[5]) that code will append Saturday into the "weekends" list. When the for loop ends, the i will be 6. weekends.append(days[6]) that code will append Sunday into the "weekends" list.
Hope I was able to solve the problem for you! Sorry this was a long message, I was just trying to explain the easiest I could.

If you need any more help on anything please contact me! Have a great day.