how could I load a different template part by page

For question as stated it would be easiest to retrieve page’s slug and pass it as second argument:

get_template_part( 'content', get_post_field( 'post_name', get_post() ) );

Note that you would want to have generic content.php for pages that don’t have dedicated template (if any).