I have this simple code
count_down = int(input("How many left left until the weekend?: "))
while count_down:
print(count_down)
count_down -= 1
print("It's the weekend!")
The output is a countdown: example:
5
4
3
2
1
It's the weekend!
I'm pretty new to python. Is there a way that I can make it so that the user can input a day of the week and make it start from that day. An example would be if the persons puts down tuesday it would count down
Tuesday
Wednesday
Thursday
Friday
It's the weekend!