#!/usr/bin/python3 import time a = 10 while a > 0: print("asdf: ", a) a -= 1 time.sleep(1)