How to delete a MySQL user

Below is the query to delete a user account in MySQL:

DROP USER 'UserNameOfTheUser'@'localhost';

In the above query, replace UserNameOfTheUser with username of the user account you want to delete.