{"id":105217,"date":"2021-10-14T11:00:00","date_gmt":"2021-10-14T08:00:00","guid":{"rendered":"https:\/\/examples.javacodegeeks.com\/?p=105217"},"modified":"2022-02-24T11:43:09","modified_gmt":"2022-02-24T09:43:09","slug":"python-array-example","status":"publish","type":"post","link":"https:\/\/examples.javacodegeeks.com\/python-array-example\/","title":{"rendered":"Python Array Example"},"content":{"rendered":"<p>Hello in this tutorial, we will see how to use <em>arrays<\/em> in python programming.<\/p>\n<h2 class=\"wp-block-heading\" id=\"h-1-introduction\">1. Introduction<\/h2>\n<p><strong>Array<\/strong> module in python is used to create an array with constraints on the data types. In this tutorial, we will focus on this module to store a collection of integer values and play around with it.<\/p>\n<h3 class=\"wp-block-heading\" id=\"h-1-1-setting-up-python\">1.1 Setting up Python<\/h3>\n<p>If someone needs to go through the Python installation on Windows, please watch <a href=\"https:\/\/www.youtube.com\/watch?v=i-MuSAwgwCU\" target=\"_blank\" rel=\"noopener\">this<\/a> link. You can download the Python from <a href=\"https:\/\/www.python.org\/downloads\/\" target=\"_blank\" rel=\"noopener\">this<\/a> link.<\/p>\n<h2 class=\"wp-block-heading\" id=\"h-2-python-array-example\">2. Python Array Example<\/h2>\n<p>I am using <a href=\"https:\/\/www.jetbrains.com\/pycharm\/\" target=\"_blank\" rel=\"noopener\">JetBrains PyCharm<\/a> as my preferred IDE. You&#8217;re free to choose the IDE of your choice.<\/p>\n<h3 class=\"wp-block-heading\" id=\"h-2-1-creating-an-implementation-file\">2.1 Creating an implementation file<\/h3>\n<p>Add the below code to the python script. The script contains several methods that will help understand the <code>array<\/code> module in deep. You\u2019re free to play around with these methods as per your wish.<\/p>\n<ul class=\"wp-block-list\">\n<li>The <code>access_elements()<\/code> method will return the element from the array based on an index<\/li>\n<li>The <code>size()<\/code> method retrieves the array length<\/li>\n<li>The <code>print_elements()<\/code> method display the array elements<\/li>\n<li>The <code>add_element()<\/code> method adds a new element into an existing array<\/li>\n<li>The <code>remove_element()<\/code> method removes an element from the array<\/li>\n<li>The <code>slice_array()<\/code> method returns a new array with the sub-elements while the original element remains unchanged<\/li>\n<li>The <code>search_element()<\/code> method will find the index of the first occurrence of an element<\/li>\n<li>The <code>reverse_array()<\/code> method will reverse the elements in an array<\/li>\n<li>The <code>count_element()<\/code> method will count the occurrence of an element<\/li>\n<li>The <code>update_element()<\/code> method will use the array index to modify the value with the help of the assignment operator<\/li>\n<\/ul>\n<p><span style=\"text-decoration: underline;\"><em>jcg-assignment-array.py<\/em><\/span><div style=\"display:inline-block; margin: 15px 0;\"> <div id=\"adngin-JavaCodeGeeks_incontent_video-0\" style=\"display:inline-block;\"><\/div> <\/div><\/p>\n<pre class=\"wp-block-preformatted\">import array as arr\n\n# creating array\nint_arr = arr.array('i', [1, 2, 3, 4, 5])\n\n\ndef access_elements():\n    print('first element = {}'.format(int_arr[0]))\n    print('second element = {}'.format(int_arr[1]))\n    print('last element = {}'.format(int_arr[-1]))\n\n\ndef size():\n    print('array size = {}'.format(len(int_arr)))\n\n\ndef print_elements():\n    print('array elements are: ')\n    for ele in int_arr:\n        print(ele, end=', ')\n\n\ndef add_element():\n    # insert() adds element at the given index.\n    # elements from the given index are shifted to right by one position.\n    index = 0\n    value = 7\n    int_arr.insert(index, value)\n    print('element = {} added at array index = {}'.format(value, index))\n    # append() add an element at the end of array.\n    value1 = 8\n    int_arr.append(value1)\n    print('element = {} added at the last'.format(value1))\n\n\ndef remove_element():\n    try:\n        value = 5\n        # remove() removes the given element from the array\n        # if not found ValueError is thrown\n        int_arr.remove(value)\n        print('element = {} removed from array'.format(value))\n    except ValueError as e:\n        print(e)\n\n\ndef slice_array():\n    # slicing returns a new array with the sub_elements while the original array remains unchanged\n    print(int_arr[3:])\n    # the array slicing in python supports the negative numbers\n    print(int_arr[:-2])\n\n\ndef search_element():\n    try:\n        key = 1\n        # index() find the index of first occurrence of element\n        # if not found ValueError is thrown\n        index = int_arr.index(key)\n        print(\"search key = {} found at index = {} in array\".format(key, index))\n    except ValueError as e:\n        print(e)\n\n\ndef reverse_array():\n    int_arr.reverse()\n    print(\"reversed array = {}\".format(int_arr))\n\n\ndef count_element():\n    element = 4\n    count = int_arr.count(element)\n    print(\"count of {} is = {}\".format(element, count))\n\n\ndef update_element():\n    # use array index with the assignment operator to modify the value at the given index\n    # if the index is invalid IndexError is thrown\n    try:\n        index = 3\n        value = -9\n        int_arr[index] = value\n        print('value = {} updated at array index = {}'.format(value, index))\n    except IndexError as e:\n        print(e)\n\n\nif __name__ == '__main__':\n    access_elements()\n    print()\n\n    size()\n    print()\n\n    add_element()\n    print_elements()\n    print()\n    print()\n\n    remove_element()\n    print_elements()\n    print()\n    print()\n\n    slice_array()\n    print()\n\n    search_element()\n    print()\n\n    reverse_array()\n    print()\n\n    count_element()\n    print()\n\n    update_element()\n    print_elements()\n<\/pre>\n<p>Run this python script and if everything goes well the output will be shown in the IDE console describing what an <code>array<\/code> module could do.<\/p>\n<p><span style=\"text-decoration: underline;\"><em>Console output<\/em><\/span><\/p>\n<pre class=\"wp-block-preformatted\">first element = 1\nsecond element = 2\nlast element = 5\n\narray size = 5\n\nelement = 7 added at array index = 0\nelement = 8 added at the last\narray elements are: \n7, 1, 2, 3, 4, 5, 8, \n\nelement = 5 removed from array\narray elements are: \n7, 1, 2, 3, 4, 8, \n\narray('i', [3, 4, 8])\narray('i', [7, 1, 2, 3])\n\nsearch key = 1 found at index = 1 in array\n\nreversed array = array('i', [8, 4, 3, 2, 1, 7])\n\ncount of 4 is = 1\n\nvalue = -9 updated at array index = 3\narray elements are: \n8, 4, 3, -9, 1, 7,\n<\/pre>\n<p>That is all for this tutorial and I hope the article served you with whatever you were looking for. Happy Learning and do not forget to share!<\/p>\n<h2 class=\"wp-block-heading\" id=\"h-3-summary\">3. Summary<\/h2>\n<p>In this tutorial, we learned about the <code>array<\/code> module and different methods which we can use to play around with the module. You can download the source code of this tutorial from the <a href=\"#projectDownload\">Downloads<\/a> section.<\/p>\n<h2 class=\"wp-block-heading\" id=\"h-4-download-the-project\"><a name=\"projectDownload\"><\/a>4. Download the Project<\/h2>\n<p>This was a tutorial on how to use <code>array<\/code> module in python.<\/p>\n<div class=\"download\"><strong>Download<\/strong><br \/>You can download the full source code of this example here: <a href=\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2021\/10\/Python-Array-Example.zip\"><strong>Python Array Example<\/strong><\/a><\/div>\n<p><strong>Last updated on Feb. 24th, 2022<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hello in this tutorial, we will see how to use arrays in python programming. 1. Introduction Array module in python is used to create an array with constraints on the data types. In this tutorial, we will focus on this module to store a collection of integer values and play around with it. 1.1 Setting &hellip;<\/p>\n","protected":false},"author":119,"featured_media":99891,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[46689],"tags":[1716],"class_list":["post-105217","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-python","tag-python"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Python Array Example - Java Code Geeks<\/title>\n<meta name=\"description\" content=\"This module in Python is used to create an array with constraints on the data types and store a collection of integer values.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/examples.javacodegeeks.com\/python-array-example\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python Array Example - Java Code Geeks\" \/>\n<meta property=\"og:description\" content=\"This module in Python is used to create an array with constraints on the data types and store a collection of integer values.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/examples.javacodegeeks.com\/python-array-example\/\" \/>\n<meta property=\"og:site_name\" content=\"Examples Java Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/javacodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2021-10-14T08:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-02-24T09:43:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2021\/02\/python-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Yatin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@javacodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@javacodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Yatin\" \/>\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\":\"Article\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/python-array-example\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/python-array-example\/\"},\"author\":{\"name\":\"Yatin\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/9874407a37b028e8be3276e2b5960d13\"},\"headline\":\"Python Array Example\",\"datePublished\":\"2021-10-14T08:00:00+00:00\",\"dateModified\":\"2022-02-24T09:43:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/python-array-example\/\"},\"wordCount\":372,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/python-array-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2021\/02\/python-logo.jpg\",\"keywords\":[\"python\"],\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/examples.javacodegeeks.com\/python-array-example\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/python-array-example\/\",\"url\":\"https:\/\/examples.javacodegeeks.com\/python-array-example\/\",\"name\":\"Python Array Example - Java Code Geeks\",\"isPartOf\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/python-array-example\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/python-array-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2021\/02\/python-logo.jpg\",\"datePublished\":\"2021-10-14T08:00:00+00:00\",\"dateModified\":\"2022-02-24T09:43:09+00:00\",\"description\":\"This module in Python is used to create an array with constraints on the data types and store a collection of integer values.\",\"breadcrumb\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/python-array-example\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/examples.javacodegeeks.com\/python-array-example\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/python-array-example\/#primaryimage\",\"url\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2021\/02\/python-logo.jpg\",\"contentUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2021\/02\/python-logo.jpg\",\"width\":150,\"height\":150,\"caption\":\"set python\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/python-array-example\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/examples.javacodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Web Development\",\"item\":\"https:\/\/examples.javacodegeeks.com\/category\/web-development\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Python\",\"item\":\"https:\/\/examples.javacodegeeks.com\/category\/web-development\/python\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Python Array Example\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#website\",\"url\":\"https:\/\/examples.javacodegeeks.com\/\",\"name\":\"Java Code Geeks\",\"description\":\"Java Examples and Code Snippets\",\"publisher\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#organization\"},\"alternateName\":\"JCG\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/examples.javacodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/examples.javacodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/javacodegeeks\",\"https:\/\/x.com\/javacodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/9874407a37b028e8be3276e2b5960d13\",\"name\":\"Yatin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2023\/09\/cropped-Yatin-Batra_avatar_1515758148-96x96.jpg\",\"contentUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2023\/09\/cropped-Yatin-Batra_avatar_1515758148-96x96.jpg\",\"caption\":\"Yatin\"},\"description\":\"An experience full-stack engineer well versed with Core Java, Spring\/Springboot, MVC, Security, AOP, Frontend (Angular &amp; React), and cloud technologies (such as AWS, GCP, Jenkins, Docker, K8).\",\"sameAs\":[\"https:\/\/www.javacodegeeks.com\"],\"url\":\"https:\/\/examples.javacodegeeks.com\/author\/yatin-batra\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Python Array Example - Java Code Geeks","description":"This module in Python is used to create an array with constraints on the data types and store a collection of integer values.","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:\/\/examples.javacodegeeks.com\/python-array-example\/","og_locale":"en_US","og_type":"article","og_title":"Python Array Example - Java Code Geeks","og_description":"This module in Python is used to create an array with constraints on the data types and store a collection of integer values.","og_url":"https:\/\/examples.javacodegeeks.com\/python-array-example\/","og_site_name":"Examples Java Code Geeks","article_publisher":"https:\/\/www.facebook.com\/javacodegeeks","article_published_time":"2021-10-14T08:00:00+00:00","article_modified_time":"2022-02-24T09:43:09+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2021\/02\/python-logo.jpg","type":"image\/jpeg"}],"author":"Yatin","twitter_card":"summary_large_image","twitter_creator":"@javacodegeeks","twitter_site":"@javacodegeeks","twitter_misc":{"Written by":"Yatin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/examples.javacodegeeks.com\/python-array-example\/#article","isPartOf":{"@id":"https:\/\/examples.javacodegeeks.com\/python-array-example\/"},"author":{"name":"Yatin","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/9874407a37b028e8be3276e2b5960d13"},"headline":"Python Array Example","datePublished":"2021-10-14T08:00:00+00:00","dateModified":"2022-02-24T09:43:09+00:00","mainEntityOfPage":{"@id":"https:\/\/examples.javacodegeeks.com\/python-array-example\/"},"wordCount":372,"commentCount":0,"publisher":{"@id":"https:\/\/examples.javacodegeeks.com\/#organization"},"image":{"@id":"https:\/\/examples.javacodegeeks.com\/python-array-example\/#primaryimage"},"thumbnailUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2021\/02\/python-logo.jpg","keywords":["python"],"articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/examples.javacodegeeks.com\/python-array-example\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/examples.javacodegeeks.com\/python-array-example\/","url":"https:\/\/examples.javacodegeeks.com\/python-array-example\/","name":"Python Array Example - Java Code Geeks","isPartOf":{"@id":"https:\/\/examples.javacodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/examples.javacodegeeks.com\/python-array-example\/#primaryimage"},"image":{"@id":"https:\/\/examples.javacodegeeks.com\/python-array-example\/#primaryimage"},"thumbnailUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2021\/02\/python-logo.jpg","datePublished":"2021-10-14T08:00:00+00:00","dateModified":"2022-02-24T09:43:09+00:00","description":"This module in Python is used to create an array with constraints on the data types and store a collection of integer values.","breadcrumb":{"@id":"https:\/\/examples.javacodegeeks.com\/python-array-example\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/examples.javacodegeeks.com\/python-array-example\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/examples.javacodegeeks.com\/python-array-example\/#primaryimage","url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2021\/02\/python-logo.jpg","contentUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2021\/02\/python-logo.jpg","width":150,"height":150,"caption":"set python"},{"@type":"BreadcrumbList","@id":"https:\/\/examples.javacodegeeks.com\/python-array-example\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/examples.javacodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Web Development","item":"https:\/\/examples.javacodegeeks.com\/category\/web-development\/"},{"@type":"ListItem","position":3,"name":"Python","item":"https:\/\/examples.javacodegeeks.com\/category\/web-development\/python\/"},{"@type":"ListItem","position":4,"name":"Python Array Example"}]},{"@type":"WebSite","@id":"https:\/\/examples.javacodegeeks.com\/#website","url":"https:\/\/examples.javacodegeeks.com\/","name":"Java Code Geeks","description":"Java Examples and Code Snippets","publisher":{"@id":"https:\/\/examples.javacodegeeks.com\/#organization"},"alternateName":"JCG","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/examples.javacodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/examples.javacodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/examples.javacodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/javacodegeeks","https:\/\/x.com\/javacodegeeks"]},{"@type":"Person","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/9874407a37b028e8be3276e2b5960d13","name":"Yatin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2023\/09\/cropped-Yatin-Batra_avatar_1515758148-96x96.jpg","contentUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2023\/09\/cropped-Yatin-Batra_avatar_1515758148-96x96.jpg","caption":"Yatin"},"description":"An experience full-stack engineer well versed with Core Java, Spring\/Springboot, MVC, Security, AOP, Frontend (Angular &amp; React), and cloud technologies (such as AWS, GCP, Jenkins, Docker, K8).","sameAs":["https:\/\/www.javacodegeeks.com"],"url":"https:\/\/examples.javacodegeeks.com\/author\/yatin-batra\/"}]}},"_links":{"self":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/105217","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/users\/119"}],"replies":[{"embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/comments?post=105217"}],"version-history":[{"count":0,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/105217\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/media\/99891"}],"wp:attachment":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/media?parent=105217"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/categories?post=105217"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/tags?post=105217"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}