''' Purpose: prints a user-specified countdown followed by 'Blast off!' ''' # get countdown range reply = input( "Enter starting and ending numbers for the countdown: " ) high, low = reply.split() high, low = int( shigh ), int( low ) # print off the range for i in range( ... ) : ... # print ending phrase print( "Blast off!" )