Except the SYSTEM tablespace, Any tablespace in an Oracle database can be dropped. You must have the DROP TABLESPACE system privilege to drop a tablespace.
To drop the users tablespace, including the segments - DROP TABLESPACE users INCLUDING CONTENTS;
To drop the USER tablespace and its associated datafiles -DROP TABLESPACE users INCLUDING CONTENTS AND DATAFILES;
For the detail info, please go
here