if score > highScore :
    print( "You have the new high score!" )
    highScore = score
    print( "High Score:", highScore )   

    while lives > 0 :
        print( "You creep along the tunnel..." )

        if trap == True :
            print( "You fall into a trap and die!" )
            lives = lives - 1
            print( "Lives left:", lives )

print( "You have no lives left. GAME OVER!" )