Project 1

This project is a count down timer.

        
"""
Sofia Piccirillo- This program is a timer in seconds. 
While n, which represents time, is greater than or equal 
to 0, the function will wait a second, print out n, and 
then subtract 1.
"""

import time

def countdown(max):
    n = max
    while n >= 0:
        time.sleep(1)
        print(n)
        n -= 1

countdown(10)