You can have a look at this code as an example . Modify the below code according to your requirement and add it in the functions.php file of your current active theme
add_filter( 'woocommerce_countries', 'country_limit',20);
function country_limit(){
return array('Cayman Islands');
}






