In [1]:
import time

TheNumber = 25 #this will be a 25 second cooldown

while TheNumber > 0:
    print(TheNumber) #i am printing out the value
    TheNumber -= 1
    time.sleep(1) #This is used to pause for q second
print("Hooray, What a wonderful day!") #My Message
25
24
23
22
21
20
19
18
17
16
15
14
13
12
11
10
9
8
7
6
5
4
3
2
1
Hooray, What a wonderful day!