Project 1

This project is a count down timer.

        
        
div.b {
  text-align: left;
    # Hayli Wynn
    # This is my countdown timer project. It can countdown from any given time.
    # It has the input "limit", which is the number that the timer will start from.
    # Here it counts down from 15 in one second increments.

    import time
    def timer(limit):
      number = 0
      while True:
        print(limit)
        limit = limit - 1
        time.sleep(1)
        if number == limit+1:
            break
    timer(15)
    print("Your timer is up")