{"id":11380,"date":"2019-08-17T13:47:20","date_gmt":"2019-08-17T13:47:20","guid":{"rendered":"http:\/\/www.techolac.com\/?p=11380"},"modified":"2019-08-17T13:47:20","modified_gmt":"2019-08-17T13:47:20","slug":"python-array","status":"publish","type":"post","link":"https:\/\/www.techolac.com\/linux\/python-array\/","title":{"rendered":"Python Array Examples \u2013 Declare, Append, Index, Remove, Count"},"content":{"rendered":"<p>In the tremendously quick moving world, one needs resourceful coding techniques that could help the programmer to sum up voluminous codes in the easiest and also most convenient ways. Arrays are one of the data structures that assist you compose a number of values into a single variable, thereby decreasing the burden of memorizing an enormous number of variables. So let&#8217;s go ahead, and see exactly how you can execute Arrays in Python.<\/p>\n<p>If you are new to Python, get started with the Python Introduction article.<\/p>\n<p>To use arrays in python language, you need to import the standard \u2018array\u2019 module. This is because array is not a fundamental data type like strings, integer etc. Here is how you can import \u2018array\u2019 module in python :<\/p>\n<pre>from array import *\r\n<\/pre>\n<p>Once you have imported the \u2018array\u2019 module, you can declare an array. Here is how you do it:<\/p>\n<pre>arrayIdentifierName = array(typecode, [Initializers]\r\n<\/pre>\n<p>In the declaration above, \u2018arrayIdentifierName\u2019 is the name of array, \u2018typecode\u2019 lets python know the type of array and \u2018Initializers\u2019 are the values with which array is initialized.<\/p>\n<p>Here is a real world example of python array declaration :<\/p>\n<pre>my_array = array('i',[1,2,3,4])\r\n<\/pre>\n<p>In the example above, typecode used is \u2018i\u2019. This typecode represents signed integer whose size is 2 bytes.<\/p>\n<p>Typecodes are the codes that are used to define the type of array values or the type of array. Here is the list of available typecodes:<\/p>\n<ul>\n<li>\u2018b\u2019 -&gt; Represents signed integer of size 1 byte<\/li>\n<li>\u2018B\u2019 -&gt; Represents unsigned integer of size 1 byte<\/li>\n<li>\u2018c\u2019 -&gt; Represents character of size 1 byte<\/li>\n<li>\u2018u\u2019 -&gt; Represents unicode character of size 2 bytes<\/li>\n<li>\u2018h\u2019 -&gt; Represents signed integer of size 2 bytes<\/li>\n<li>\u2018H\u2019 -&gt; Represents unsigned integer of size 2 bytes<\/li>\n<li>\u2018i\u2019 -&gt; Represents signed integer of size 2 bytes<\/li>\n<li>\u2018I\u2019 -&gt; Represents unsigned integer of size 2 bytes<\/li>\n<li>\u2018w\u2019 -&gt; Represents unicode character of size 4 bytes<\/li>\n<li>\u2018l\u2019 -&gt; Represents signed integer of size 4 bytes<\/li>\n<li>\u2018L\u2019 -&gt; Represents unsigned integer of size 4 bytes<\/li>\n<li>\u2018f\u2019 -&gt; Represents floating point of size 4 bytes<\/li>\n<li>\u2018d\u2019 -&gt; Represents floating point of size 8 bytes<\/li>\n<\/ul>\n<p>On a related topic, you should also know how to use Python Lists effectively.<\/p>\n<h3>1. Basic example<\/h3>\n<p>Here is a simple example of an array containing 5 integers<\/p>\n<pre>~$ python\r\nPython 2.7.4 (default, Apr 19 2013, 18:28:01)\r\n[GCC 4.7.3] on linux2\r\nType \"help\", \"copyright\", \"credits\" or \"license\" for more information.\r\n<strong>&gt;&gt;&gt; from array import *<\/strong>\r\n<strong>&gt;&gt;&gt; my_array = array('i', [1,2,3,4,5])<\/strong>\r\n<strong>&gt;&gt;&gt; for i in my_array:<\/strong>\r\n<strong>... print(i)<\/strong>\r\n<strong>...<\/strong>\r\n<strong>1<\/strong>\r\n<strong>2<\/strong>\r\n<strong>3<\/strong>\r\n<strong>4<\/strong>\r\n<strong>5<\/strong><\/pre>\n<p>So this way we can create a simple python array and print it.<\/p>\n<h3>2. Access individual elements through indexes<\/h3>\n<p>Individual elements can be accessed through indexes. Here is an example :<\/p>\n<pre>&gt;&gt;&gt; my_array[1]\r\n2\r\n&gt;&gt;&gt; my_array[2]\r\n3\r\n&gt;&gt;&gt; my_array[0]\r\n1<\/pre>\n<p>Remember that indexes start from zero.<\/p>\n<h3>3. Append any value to the array using append() method<\/h3>\n<p>Here is an example :<\/p>\n<pre>&gt;&gt;&gt; <strong>my_array.append(6)<\/strong>\r\n&gt;&gt;&gt; my_array\r\narray('i', [1, 2, 3, 4, 5, <strong>6<\/strong>])<\/pre>\n<p>So we see that the value \u20186\u2019 was appended to the existing array values.<\/p>\n<h3>4. Insert value in an array using insert() method<\/h3>\n<p>We can use the insert() method to insert a value at any index of the array. Here is an example :<\/p>\n<pre>&gt;&gt;&gt; <strong>my_array.insert(0,0)<\/strong>\r\n&gt;&gt;&gt; my_array\r\narray('i', [<strong>0<\/strong>, 1, 2, 3, 4, 5, 6])<\/pre>\n<p>In the above example, using insert() method, the value 0 was inserted at index 0. Note that the first argument is the index while second argument is the value.<\/p>\n<h3>5. Extend python array using extend() method<\/h3>\n<p>A python array can be extended with more than one value using extend() method. Here is an example :<\/p>\n<pre>&gt;&gt;&gt; my_extnd_array = array('i', [7,8,9,10])\r\n&gt;&gt;&gt; <strong>my_array.extend(my_extnd_array)<\/strong>\r\n&gt;&gt;&gt; my_array\r\narray('i', [0, 1, 2, 3, 4, 5, 6, <strong>7, 8, 9, 10<\/strong>])<\/pre>\n<p>So we see that the array my_array was extended with values from my_extnd_array.<\/p>\n<h3>6. Add items from list into array using fromlist() method<\/h3>\n<p>Here is an example:<\/p>\n<pre>&gt;&gt;&gt; c=[11,12,13]\r\n&gt;&gt;&gt; <strong>my_array.fromlist(c)<\/strong>\r\n&gt;&gt;&gt; my_array\r\narray('i', [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, <strong>11, 12, 13<\/strong>])<\/pre>\n<p>So we see that the values 11,12 and 13 were added from list \u2018c\u2019 to \u2018my_array\u2019.<\/p>\n<h3>7. Remove any array element using remove() method<\/h3>\n<p>Here is an example :<\/p>\n<pre>&gt;&gt;&gt; <strong>my_array.remove(13)<\/strong>\r\n&gt;&gt;&gt; my_array\r\narray('i', [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12])<\/pre>\n<p>So we see that the element 13 was removed from the array.<\/p>\n<h3>8. Remove last array element using pop() method<\/h3>\n<p>Here is an example :<\/p>\n<pre>&gt;&gt;&gt; <strong>my_array.pop()<\/strong>\r\n12\r\n&gt;&gt;&gt; my_array\r\narray('i', [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11])<\/pre>\n<p>So we see that the last element 12 was popped out of array.<\/p>\n<h3>9. Fetch any element through its index using index() method<\/h3>\n<p>Here is an example :<\/p>\n<pre>&gt;&gt;&gt; <strong>my_array.index(5)<\/strong>\r\n5<\/pre>\n<p>So we see that the value at index 5 was fetched through this method.<\/p>\n<h3>10. Reverse a python array using reverse() method<\/h3>\n<p>Here is an example :<\/p>\n<pre>&gt;&gt;&gt; <strong>my_array.reverse()<\/strong>\r\n&gt;&gt;&gt; my_array\r\narray('i', [11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0])<\/pre>\n<p>So we see that the complete array got reversed.<\/p>\n<h3>11. Get array buffer information through buffer_info() method<\/h3>\n<p>This method provides you the array buffer start address in memory and number of elements in array. Here is an example:<\/p>\n<pre>&gt;&gt;&gt; <strong>my_array.buffer_info()<\/strong>\r\n(33881712, 12)<\/pre>\n<p>So we see that buffer start address and number of elements were provided in output.<\/p>\n<h3>12. Check for number of occurrences of an element using count() method<\/h3>\n<p>Here is an example :<\/p>\n<pre>&gt;&gt;&gt; <strong>my_array.count(11)<\/strong>\r\n1<\/pre>\n<p>So we see that the element 11 occurred only once in the array.<\/p>\n<h3>13. Convert array to string using tostring() method<\/h3>\n<p>Here is an example :<\/p>\n<pre>&gt;&gt;&gt; my_char_array = array('c', ['g','e','e','k'])\r\n&gt;&gt;&gt; my_char_array\r\narray('c', 'geek')\r\n&gt;&gt;&gt; <strong>my_char_array.tostring()<\/strong>\r\n'geek'<\/pre>\n<p>So we see that the character array was converted to string using this method.<\/p>\n<h3>14. Convert array to a python list with same elements using tolist() method<\/h3>\n<p>Here is an example :<\/p>\n<pre>&gt;&gt;&gt; <strong>c = my_array.tolist()<\/strong>\r\n&gt;&gt;&gt; c\r\n[11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0]<\/pre>\n<p>So we see that list \u2018c\u2019 was created by using tolist() method on my_array.<\/p>\n<h3>15. Append a string to char array using fromstring() method<\/h3>\n<p>Here is an example :<\/p>\n<pre>&gt;&gt;&gt; <strong>my_char_array.fromstring(\"stuff\")<\/strong>\r\n&gt;&gt;&gt; my_char_array\r\narray('c', 'geek<strong>stuff<\/strong>')<\/pre>\n<p>So we see that the string \u201cstuff\u201d was added to my_char_array.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the tremendously quick moving world, one needs resourceful coding techniques that could help the programmer to sum up voluminous codes in the easiest and also most convenient ways. Arrays are one of the data structures that assist you compose a number of values into a single variable, thereby decreasing the burden of memorizing an [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":11382,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[26],"tags":[872,1367,1368,1366],"class_list":["post-11380","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","tag-append","tag-declare","tag-index","tag-python-array"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Python Array Examples \u2013 Declare, Append, Index, Remove, Count - Techolac<\/title>\n<meta name=\"description\" content=\"Complete guide Python Array Examples \u2013 Declare, Append, Index, Remove, Count, Arrays are one of the data structures that assist you compose a number of values into a single variable.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.techolac.com\/linux\/python-array\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python Array Examples \u2013 Declare, Append, Index, Remove, Count - Techolac\" \/>\n<meta property=\"og:description\" content=\"Complete guide Python Array Examples \u2013 Declare, Append, Index, Remove, Count, Arrays are one of the data structures that assist you compose a number of values into a single variable.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.techolac.com\/linux\/python-array\/\" \/>\n<meta property=\"og:site_name\" content=\"Techolac - Computer Technology News\" \/>\n<meta property=\"article:published_time\" content=\"2019-08-17T13:47:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/python-array.png\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"375\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Editorial Staff\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Editorial Staff\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.techolac.com\/linux\/python-array\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.techolac.com\/linux\/python-array\/\"},\"author\":{\"name\":\"Editorial Staff\",\"@id\":\"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b\"},\"headline\":\"Python Array Examples \u2013 Declare, Append, Index, Remove, Count\",\"datePublished\":\"2019-08-17T13:47:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.techolac.com\/linux\/python-array\/\"},\"wordCount\":802,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b\"},\"image\":{\"@id\":\"https:\/\/www.techolac.com\/linux\/python-array\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/python-array.png\",\"keywords\":[\"Append()\",\"Declare\",\"Index\",\"Python Array\"],\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.techolac.com\/linux\/python-array\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.techolac.com\/linux\/python-array\/\",\"url\":\"https:\/\/www.techolac.com\/linux\/python-array\/\",\"name\":\"Python Array Examples \u2013 Declare, Append, Index, Remove, Count - Techolac\",\"isPartOf\":{\"@id\":\"https:\/\/www.techolac.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.techolac.com\/linux\/python-array\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.techolac.com\/linux\/python-array\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/python-array.png\",\"datePublished\":\"2019-08-17T13:47:20+00:00\",\"description\":\"Complete guide Python Array Examples \u2013 Declare, Append, Index, Remove, Count, Arrays are one of the data structures that assist you compose a number of values into a single variable.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.techolac.com\/linux\/python-array\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.techolac.com\/linux\/python-array\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.techolac.com\/linux\/python-array\/#primaryimage\",\"url\":\"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/python-array.png\",\"contentUrl\":\"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/python-array.png\",\"width\":750,\"height\":375},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.techolac.com\/linux\/python-array\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.techolac.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python Array Examples \u2013 Declare, Append, Index, Remove, Count\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.techolac.com\/#website\",\"url\":\"https:\/\/www.techolac.com\/\",\"name\":\"Techolac - Computer Technology News\",\"description\":\"A weblog on emerging technology and internet news, reviews, tips for a broad range of computing technologies.\",\"publisher\":{\"@id\":\"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.techolac.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b\",\"name\":\"Editorial Staff\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.techolac.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/46bb6cbf5ea4efe79156ff0f5de0a9602d1d0e5da0cb54b21e05a35d7e23379c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/46bb6cbf5ea4efe79156ff0f5de0a9602d1d0e5da0cb54b21e05a35d7e23379c?s=96&d=mm&r=g\",\"caption\":\"Editorial Staff\"},\"logo\":{\"@id\":\"https:\/\/www.techolac.com\/#\/schema\/person\/image\/\"},\"url\":\"https:\/\/www.techolac.com\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Python Array Examples \u2013 Declare, Append, Index, Remove, Count - Techolac","description":"Complete guide Python Array Examples \u2013 Declare, Append, Index, Remove, Count, Arrays are one of the data structures that assist you compose a number of values into a single variable.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.techolac.com\/linux\/python-array\/","og_locale":"en_US","og_type":"article","og_title":"Python Array Examples \u2013 Declare, Append, Index, Remove, Count - Techolac","og_description":"Complete guide Python Array Examples \u2013 Declare, Append, Index, Remove, Count, Arrays are one of the data structures that assist you compose a number of values into a single variable.","og_url":"https:\/\/www.techolac.com\/linux\/python-array\/","og_site_name":"Techolac - Computer Technology News","article_published_time":"2019-08-17T13:47:20+00:00","og_image":[{"width":750,"height":375,"url":"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/python-array.png","type":"image\/png"}],"author":"Editorial Staff","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Editorial Staff","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.techolac.com\/linux\/python-array\/#article","isPartOf":{"@id":"https:\/\/www.techolac.com\/linux\/python-array\/"},"author":{"name":"Editorial Staff","@id":"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b"},"headline":"Python Array Examples \u2013 Declare, Append, Index, Remove, Count","datePublished":"2019-08-17T13:47:20+00:00","mainEntityOfPage":{"@id":"https:\/\/www.techolac.com\/linux\/python-array\/"},"wordCount":802,"commentCount":0,"publisher":{"@id":"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b"},"image":{"@id":"https:\/\/www.techolac.com\/linux\/python-array\/#primaryimage"},"thumbnailUrl":"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/python-array.png","keywords":["Append()","Declare","Index","Python Array"],"articleSection":["Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.techolac.com\/linux\/python-array\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.techolac.com\/linux\/python-array\/","url":"https:\/\/www.techolac.com\/linux\/python-array\/","name":"Python Array Examples \u2013 Declare, Append, Index, Remove, Count - Techolac","isPartOf":{"@id":"https:\/\/www.techolac.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.techolac.com\/linux\/python-array\/#primaryimage"},"image":{"@id":"https:\/\/www.techolac.com\/linux\/python-array\/#primaryimage"},"thumbnailUrl":"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/python-array.png","datePublished":"2019-08-17T13:47:20+00:00","description":"Complete guide Python Array Examples \u2013 Declare, Append, Index, Remove, Count, Arrays are one of the data structures that assist you compose a number of values into a single variable.","breadcrumb":{"@id":"https:\/\/www.techolac.com\/linux\/python-array\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.techolac.com\/linux\/python-array\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.techolac.com\/linux\/python-array\/#primaryimage","url":"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/python-array.png","contentUrl":"https:\/\/www.techolac.com\/wp-content\/uploads\/2019\/08\/python-array.png","width":750,"height":375},{"@type":"BreadcrumbList","@id":"https:\/\/www.techolac.com\/linux\/python-array\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.techolac.com\/"},{"@type":"ListItem","position":2,"name":"Python Array Examples \u2013 Declare, Append, Index, Remove, Count"}]},{"@type":"WebSite","@id":"https:\/\/www.techolac.com\/#website","url":"https:\/\/www.techolac.com\/","name":"Techolac - Computer Technology News","description":"A weblog on emerging technology and internet news, reviews, tips for a broad range of computing technologies.","publisher":{"@id":"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.techolac.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.techolac.com\/#\/schema\/person\/3c09b621dfc5ef8f09b6f48236a9ae7b","name":"Editorial Staff","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.techolac.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/46bb6cbf5ea4efe79156ff0f5de0a9602d1d0e5da0cb54b21e05a35d7e23379c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/46bb6cbf5ea4efe79156ff0f5de0a9602d1d0e5da0cb54b21e05a35d7e23379c?s=96&d=mm&r=g","caption":"Editorial Staff"},"logo":{"@id":"https:\/\/www.techolac.com\/#\/schema\/person\/image\/"},"url":"https:\/\/www.techolac.com\/author\/admin\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/posts\/11380","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/comments?post=11380"}],"version-history":[{"count":0,"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/posts\/11380\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/media\/11382"}],"wp:attachment":[{"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/media?parent=11380"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/categories?post=11380"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.techolac.com\/wp-json\/wp\/v2\/tags?post=11380"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}