You don't need a script as much as the right bit of SQL.
Code:
DELETE FROM table WHERE username IN (user1, user2, usern)
You'd still have to do some typing, but less than if you did it one line at a time.
If you have a flat file of usernames, you might be able to do something with perl or python (those would be my choices).