No. Directly updating the Oracle is almost never necessary or desirable. The right command to drop a user is
drop user user_id;
If the user owns tables or other database objects, this drop will fail. If you know for sure that you can drop all the objects owned by the user, you can fix this with a cascading drop. The syntax is
drop user user_id cascade;