{"id":2699,"date":"2019-08-02T18:49:31","date_gmt":"2019-08-02T18:49:31","guid":{"rendered":"https:\/\/prwatech.in\/blog\/?p=2699"},"modified":"2024-03-26T12:29:11","modified_gmt":"2024-03-26T12:29:11","slug":"numpy-tutorial-in-python","status":"publish","type":"post","link":"https:\/\/prwatech.in\/blog\/python\/python-numpy\/numpy-tutorial-in-python\/","title":{"rendered":"NumPy in Python"},"content":{"rendered":"<h1>Numpy Tutorial in Python<\/h1>\n<p>&nbsp;<\/p>\n<p><strong>Numpy Tutorial in Python<\/strong>, Welcome to the world of <a href=\"https:\/\/prwatech.in\/python-training-institute-in-bangalore\/\">Python<\/a> NumPy Tutorial. Are you the one who is looking forward to knowing the Python NumPy? Or the one who is very keen to explore the\u00a0NumPy tutorial in Python with examples that are available? Then you\u2019ve landed on the Right path which provides the standard information of Python NumPy Tutorial.<\/p>\n<p>&nbsp;<\/p>\n<h2>What is NumPy in Python?<\/h2>\n<p>NumPy is an array-processing package. It provides a multidimensional array object and tools for working with these arrays with high-performance.<\/p>\n<p>&nbsp;<\/p>\n<h2>Features of Numpy in Python<\/h2>\n<p>&nbsp;<\/p>\n<p>1. A powerful N-dimensional array object<br \/>\n2. Sophisticated (broadcasting) functions<br \/>\n3. Tools for integrating C\/C++ and Fortran code<\/p>\n<p>&nbsp;<\/p>\n<h3><strong>Useful linear algebra, Fourier transform, and random number capabilities<\/strong><\/h3>\n<p>&nbsp;<\/p>\n<p>NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be defined using Numpy which allows NumPy to seamlessly and speedily integrate with a large variety of databases.<\/p>\n<p>&nbsp;<\/p>\n<h2>Installation of Python Numpy<\/h2>\n<p>&nbsp;<\/p>\n<h3><strong>Installation of Numpy on Mac<\/strong><\/h3>\n<p>&nbsp;<\/p>\n<p><strong>Step1)<\/strong>Open the terminal<br \/>\n<strong>Step2)<\/strong>pip install numpy<\/p>\n<p>&nbsp;<\/p>\n<h3><strong>Installation of Numpy on windows<\/strong><\/h3>\n<p>&nbsp;<\/p>\n<p><strong>Step1)<\/strong> Go to the File menu<br \/>\n<strong>Step2)<\/strong> Go to settings<br \/>\n<strong>Step3)<\/strong> Go to Project<br \/>\n<strong>Step4)<\/strong> Go to project Interpreter<br \/>\n<strong>Step5)<\/strong> Click on \u2018+\u2019 icon<br \/>\n<strong>Step6)<\/strong> Type numPy.<br \/>\n<strong>Step7)<\/strong> Select it and install it.<br \/>\n<strong>Step8)<\/strong> import numpy as n<br \/>\n<strong>Step9)<\/strong> Use it<\/p>\n<p>&nbsp;<\/p>\n<p><iframe loading=\"lazy\" src=\"https:\/\/www.youtube.com\/embed\/8dND-vrDfrs\" width=\"850\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><\/iframe><\/p>\n<p>&nbsp;<\/p>\n<h3><strong>Properties of Numpy<\/strong><\/h3>\n<p>&nbsp;<\/p>\n<p><strong>Arrays in NumPy:<\/strong> NumPy\u2019s mainly used for homogeneous multidimensional array.<\/p>\n<p>1. It is a table kind structure consisting of elements, having a similar data type, indexed by a tuple of positive integers.<br \/>\n2. In NumPy dimensions are known as axes. The number of axes is rank.<\/p>\n<p>Ex) [[11,22,33],<br \/>\n[44,55,66]]<br \/>\nHere,<br \/>\nrank= 2 (as it is two dimensional or you can say it has 2 axis)<\/p>\n<p>&nbsp;<\/p>\n<h3>How to implement Numpy<\/h3>\n<p>&nbsp;<\/p>\n<p>Ex) import numpy as n<br \/>\na=n.array([2,3,4])<br \/>\nprint(a)<\/p>\n<h2>Numpy Arrays in Python<\/h2>\n<p>&nbsp;<\/p>\n<h3><strong>Arrays are of 2 types<\/strong><\/h3>\n<p>&nbsp;<\/p>\n<p><strong>Single Dimension Arrays:<\/strong> Arrays having only one dimension i.e. only a row or only a column.<\/p>\n<p>&nbsp;<\/p>\n<p>Ex)\u00a0 import numpy as n<br \/>\na=n.array([1,8,6])<\/p>\n<p>&nbsp;<\/p>\n<p><strong>Multi Dimension Arrays: <\/strong>Array having more than one dimension is known as multi-dimension arrays.<\/p>\n<p>&nbsp;<\/p>\n<p>Ex) import numpy as n<br \/>\na= n.array([1,2,4],[2,5,7],[7,8,9],[1,2,4])<\/p>\n<p>1. It occupies Less Memory.<br \/>\n2. It is a pity Fast as compared to List<br \/>\n3. It is also convenient to use Convenient<\/p>\n<p>&nbsp;<\/p>\n<h2>Numpy Operators in Python<\/h2>\n<p>&nbsp;<\/p>\n<h3><strong>ndim<\/strong><\/h3>\n<p>&nbsp;<\/p>\n<p>It is used to find the dimension of the array, i.e. whether it is a two-dimensional array, five Dimension array or a single dimensional array.<\/p>\n<p>Ex) import numpy as np<br \/>\na = np.array([(1,2,3),(4,5,6)])<br \/>\nprint(a.ndim)<\/p>\n<p>&nbsp;<\/p>\n<h3><strong>item size<\/strong><\/h3>\n<p>&nbsp;<\/p>\n<p>It is used to calculate the byte size of each element.<\/p>\n<p>Ex) import numpy as np<br \/>\na = np.array([(1,2,3),(4,5,6)])<br \/>\nprint(a.itemsize)<\/p>\n<p>&nbsp;<\/p>\n<h3><strong>dtype<\/strong><\/h3>\n<p>&nbsp;<\/p>\n<p>It is used to find the data type of the elements stored in an array.<\/p>\n<p>Ex) import numpy as np<br \/>\na = np.array([(1,2,3),(4,5,6)])<br \/>\nprint(a.dtype)<\/p>\n<p>&nbsp;<\/p>\n<h3><strong>Reshape<\/strong><\/h3>\n<p>&nbsp;<\/p>\n<p>It is used to change the number of rows and columns to give a new view to an object.<\/p>\n<p>Ex) import numpy as np<br \/>\na = np.array([(1,2,3),(4,5,6)])<br \/>\nprint(a)<br \/>\na=a.reshape(3,2)<br \/>\nprint(a)<\/p>\n<p>&nbsp;<\/p>\n<h3><strong>Slicing<\/strong><\/h3>\n<p>&nbsp;<\/p>\n<p>Slicing is actually extracting a particular set of elements from an array.<\/p>\n<p>Ex) import numpy as np<br \/>\na = np.array([(1,2,3),(4,5,6),(11,12,13)]),<br \/>\nprint(a[0,2])\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 #output:\u00a0\u00a0\u00a0\u00a0\u00a0 3<br \/>\nprint(a[0:,2])\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 #output\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 3,5<br \/>\nprint(a[0:2,1])\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 #output\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 3,6,13<\/p>\n<p>&nbsp;<\/p>\n<h3><strong>linespace<\/strong><\/h3>\n<p>&nbsp;<\/p>\n<p>It returns evenly spaced numbers over a specific interval.<\/p>\n<p>Ex) import numpy as np<br \/>\na = np.linespace(1,3,10)<br \/>\nprint(a)<\/p>\n<p>&nbsp;<\/p>\n<h3><strong>max()<\/strong><\/h3>\n<p>&nbsp;<\/p>\n<p>It returns the maximum number from a given array.<\/p>\n<p>Ex) import numpy as np<br \/>\na = np.array([(1,2,3),(4,5,6)])<br \/>\nprint(max(a))<\/p>\n<p>&nbsp;<\/p>\n<h3><strong>min()<\/strong><\/h3>\n<p>&nbsp;<\/p>\n<p>It returns the minimum number from a given array.<\/p>\n<p>Ex) import numpy as np<br \/>\na = np.array([(1,2,3),(4,5,6)])<br \/>\nprint(min(a))<\/p>\n<p>&nbsp;<\/p>\n<h3><strong>sum()<\/strong><\/h3>\n<p>&nbsp;<\/p>\n<p>It returns the sum of numbers from a given array.<\/p>\n<p>Ex) import numpy as np<br \/>\na = np.array([(1,2,3),(4,5,6)])<br \/>\nprint(sum(a))<\/p>\n<p>&nbsp;<\/p>\n<h3><strong>sqrt()<\/strong><\/h3>\n<p>&nbsp;<\/p>\n<p>It returns the square root of the numbers from a given array.<\/p>\n<p>Ex) import numpy as np<br \/>\na = np.array([(1,2,3),(4,5,6)])<br \/>\nprint(sqrt(a))<\/p>\n<p>&nbsp;<\/p>\n<h3><strong>std()<\/strong><\/h3>\n<p>&nbsp;<\/p>\n<p>It returns the standard deviation of the numbers from a given array.<\/p>\n<p>Ex) import numpy as np<br \/>\na = np.array([(1,2,3),(4,5,6)])<br \/>\nprint(std(a))<\/p>\n<p>&nbsp;<\/p>\n<h3><strong>Additional operator<\/strong><\/h3>\n<p>&nbsp;<\/p>\n<p>Used to add elements of 2 arrays<\/p>\n<p>Ex) import numpy as np<br \/>\na = np.array([(1,2,3),(4,5,6)])<br \/>\nb = np.array([(5,2,6),(8,4,6)])<br \/>\nprint(a+b)<\/p>\n<p>&nbsp;<\/p>\n<h3><strong>Subtraction operator<\/strong><\/h3>\n<p>&nbsp;<\/p>\n<p>Used to substract elements of 2 arrays<\/p>\n<p>Ex) import numpy as np<br \/>\na = np.array([(1,2,3),(4,5,6)])<br \/>\nb = np.array([(5,2,6),(8,4,6)])<br \/>\nprint(a-b)<\/p>\n<p>&nbsp;<\/p>\n<h3><strong>Division operator<\/strong><\/h3>\n<p>&nbsp;<\/p>\n<p>Used to divide elements of 2 arrays<\/p>\n<p>Ex) import numpy as np<br \/>\na = np.array([(1,2,3),(4,5,6)])<br \/>\nb = np.array([(5,2,6),(8,4,6)])<br \/>\nprint(a\/b)<\/p>\n<p>&nbsp;<\/p>\n<h3><strong>Vertical &amp; Horizontal Stacking<\/strong><\/h3>\n<p>&nbsp;<\/p>\n<p>If you want to concatenate two arrays but not add them, you can perform it using two ways \u2013 vertical stacking and horizontal stacking.<\/p>\n<p>Ex) import numpy as np<br \/>\na = np.array([(1,2,3),(4,5,6)])<br \/>\nb = np.array([(5,2,6),(8,4,6)])<br \/>\nprint(np.vstack((x,y)))<br \/>\nprint(np.hstack((x,y)))<\/p>\n<p>&nbsp;<\/p>\n<h3><strong>Ravel<\/strong><\/h3>\n<p>It converts an array into a single column.<\/p>\n<p>Ex) import numpy as np<br \/>\na = np.array([(1,2,3),(4,5,6)])<br \/>\nprint(a.ravel())<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Numpy Tutorial in Python &nbsp; Numpy Tutorial in Python, Welcome to the world of Python NumPy Tutorial. Are you the one who is looking forward to knowing the Python NumPy? Or the one who is very keen to explore the\u00a0NumPy tutorial in Python with examples that are available? Then you\u2019ve landed on the Right path [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":3378,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[28,1678],"tags":[341,73],"class_list":["post-2699","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-python","category-python-numpy","tag-numpy-tutorial-in-python","tag-python-numpy-tutorials"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Numpy Tutorial in Python - Prwatech<\/title>\n<meta name=\"description\" content=\"Here is the detailed information about Numpy Tutorial in Python. Learn features, Numpy Arrays With Examples, Installation, Operators,\" \/>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Numpy Tutorial in Python - Prwatech\" \/>\n<meta property=\"og:description\" content=\"Here is the detailed information about Numpy Tutorial in Python. Learn features, Numpy Arrays With Examples, Installation, Operators,\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prwatech.in\/blog\/python\/python-numpy\/numpy-tutorial-in-python\/\" \/>\n<meta property=\"og:site_name\" content=\"Prwatech\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prwatech.in\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-08-02T18:49:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-26T12:29:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/08\/Python-NumPy-Tutorials.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"960\" \/>\n\t<meta property=\"og:image:height\" content=\"550\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Prwatech\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@Eduprwatech\" \/>\n<meta name=\"twitter:site\" content=\"@Eduprwatech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prwatech\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prwatech.in\/blog\/python\/python-numpy\/numpy-tutorial-in-python\/\",\"url\":\"https:\/\/prwatech.in\/blog\/python\/python-numpy\/numpy-tutorial-in-python\/\",\"name\":\"Numpy Tutorial in Python - Prwatech\",\"isPartOf\":{\"@id\":\"https:\/\/prwatech.in\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prwatech.in\/blog\/python\/python-numpy\/numpy-tutorial-in-python\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prwatech.in\/blog\/python\/python-numpy\/numpy-tutorial-in-python\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/08\/Python-NumPy-Tutorials.jpg\",\"datePublished\":\"2019-08-02T18:49:31+00:00\",\"dateModified\":\"2024-03-26T12:29:11+00:00\",\"author\":{\"@id\":\"https:\/\/prwatech.in\/blog\/#\/schema\/person\/db90baff7744090b2288bbc98fea87f3\"},\"description\":\"Here is the detailed information about Numpy Tutorial in Python. Learn features, Numpy Arrays With Examples, Installation, Operators,\",\"breadcrumb\":{\"@id\":\"https:\/\/prwatech.in\/blog\/python\/python-numpy\/numpy-tutorial-in-python\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prwatech.in\/blog\/python\/python-numpy\/numpy-tutorial-in-python\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prwatech.in\/blog\/python\/python-numpy\/numpy-tutorial-in-python\/#primaryimage\",\"url\":\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/08\/Python-NumPy-Tutorials.jpg\",\"contentUrl\":\"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/08\/Python-NumPy-Tutorials.jpg\",\"width\":960,\"height\":550,\"caption\":\"Python NumPy Tutorials\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prwatech.in\/blog\/python\/python-numpy\/numpy-tutorial-in-python\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/prwatech.in\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"NumPy in Python\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/prwatech.in\/blog\/#website\",\"url\":\"https:\/\/prwatech.in\/blog\/\",\"name\":\"Prwatech\",\"description\":\"Share Ideas, Start Something Good.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/prwatech.in\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/prwatech.in\/blog\/#\/schema\/person\/db90baff7744090b2288bbc98fea87f3\",\"name\":\"Prwatech\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prwatech.in\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c00bafc1b04045f31eda917de39891456c44fa47c092b9bb6be0f860a3a30a2f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c00bafc1b04045f31eda917de39891456c44fa47c092b9bb6be0f860a3a30a2f?s=96&d=mm&r=g\",\"caption\":\"Prwatech\"},\"url\":\"https:\/\/prwatech.in\/blog\/author\/prwatech123\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Numpy Tutorial in Python - Prwatech","description":"Here is the detailed information about Numpy Tutorial in Python. Learn features, Numpy Arrays With Examples, Installation, Operators,","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"Numpy Tutorial in Python - Prwatech","og_description":"Here is the detailed information about Numpy Tutorial in Python. Learn features, Numpy Arrays With Examples, Installation, Operators,","og_url":"https:\/\/prwatech.in\/blog\/python\/python-numpy\/numpy-tutorial-in-python\/","og_site_name":"Prwatech","article_publisher":"https:\/\/www.facebook.com\/prwatech.in\/","article_published_time":"2019-08-02T18:49:31+00:00","article_modified_time":"2024-03-26T12:29:11+00:00","og_image":[{"width":960,"height":550,"url":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/08\/Python-NumPy-Tutorials.jpg","type":"image\/jpeg"}],"author":"Prwatech","twitter_card":"summary_large_image","twitter_creator":"@Eduprwatech","twitter_site":"@Eduprwatech","twitter_misc":{"Written by":"Prwatech","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/prwatech.in\/blog\/python\/python-numpy\/numpy-tutorial-in-python\/","url":"https:\/\/prwatech.in\/blog\/python\/python-numpy\/numpy-tutorial-in-python\/","name":"Numpy Tutorial in Python - Prwatech","isPartOf":{"@id":"https:\/\/prwatech.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prwatech.in\/blog\/python\/python-numpy\/numpy-tutorial-in-python\/#primaryimage"},"image":{"@id":"https:\/\/prwatech.in\/blog\/python\/python-numpy\/numpy-tutorial-in-python\/#primaryimage"},"thumbnailUrl":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/08\/Python-NumPy-Tutorials.jpg","datePublished":"2019-08-02T18:49:31+00:00","dateModified":"2024-03-26T12:29:11+00:00","author":{"@id":"https:\/\/prwatech.in\/blog\/#\/schema\/person\/db90baff7744090b2288bbc98fea87f3"},"description":"Here is the detailed information about Numpy Tutorial in Python. Learn features, Numpy Arrays With Examples, Installation, Operators,","breadcrumb":{"@id":"https:\/\/prwatech.in\/blog\/python\/python-numpy\/numpy-tutorial-in-python\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prwatech.in\/blog\/python\/python-numpy\/numpy-tutorial-in-python\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prwatech.in\/blog\/python\/python-numpy\/numpy-tutorial-in-python\/#primaryimage","url":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/08\/Python-NumPy-Tutorials.jpg","contentUrl":"https:\/\/prwatech.in\/blog\/wp-content\/uploads\/2019\/08\/Python-NumPy-Tutorials.jpg","width":960,"height":550,"caption":"Python NumPy Tutorials"},{"@type":"BreadcrumbList","@id":"https:\/\/prwatech.in\/blog\/python\/python-numpy\/numpy-tutorial-in-python\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/prwatech.in\/blog\/"},{"@type":"ListItem","position":2,"name":"NumPy in Python"}]},{"@type":"WebSite","@id":"https:\/\/prwatech.in\/blog\/#website","url":"https:\/\/prwatech.in\/blog\/","name":"Prwatech","description":"Share Ideas, Start Something Good.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/prwatech.in\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/prwatech.in\/blog\/#\/schema\/person\/db90baff7744090b2288bbc98fea87f3","name":"Prwatech","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prwatech.in\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/c00bafc1b04045f31eda917de39891456c44fa47c092b9bb6be0f860a3a30a2f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c00bafc1b04045f31eda917de39891456c44fa47c092b9bb6be0f860a3a30a2f?s=96&d=mm&r=g","caption":"Prwatech"},"url":"https:\/\/prwatech.in\/blog\/author\/prwatech123\/"}]}},"_links":{"self":[{"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/posts\/2699","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/comments?post=2699"}],"version-history":[{"count":12,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/posts\/2699\/revisions"}],"predecessor-version":[{"id":11119,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/posts\/2699\/revisions\/11119"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/media\/3378"}],"wp:attachment":[{"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/media?parent=2699"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/categories?post=2699"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prwatech.in\/blog\/wp-json\/wp\/v2\/tags?post=2699"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}