Remove the P tag in a WordPress page or post

WordPress likes to add a paragraph after every carriage return when you are creating a page or post content. 
Here is the filter to remove the tag. I use this free wordpress plugin called Snippets and I create a custom PHP snippet and add this php code.

remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );