Who are your database users?
select username from dba_users.

Who owns tables in the database?
select distinct owner from dba_tables.

Chances are your list of owners will be much smaller than the list of users. Your owner is also a user, but a user isn't necessarily an owner.

You can also cross check with select distinct owner from dba_objects.