A WordPress blog post can have no, one or multiple comments associated with it.
To display the number of comments one post has, include this within the post loop, for example in content.php:
<?php $totalcomments = get_comments_number(); echo $totalcomments; ?>
This will create a variable name totalcomment and it will store the number of comments for that specific blog post. Then, you can display that number wherever you want.
In my specific case, I wanted to add schema.org markup and I created this code to include the number of comments:
<meta itemprop="interactionCount" content="UserComments:<?php $totalcomments = get_comments_number(); echo $totalcomments; ?>">
Sir i would like to show some comments on our wordpress blog so that our blog post is load fast
rwwsafsdgf
dd