{"id":31506,"date":"2024-11-01T08:39:03","date_gmt":"2024-11-01T08:39:03","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=31506"},"modified":"2024-11-01T08:40:33","modified_gmt":"2024-11-01T08:40:33","slug":"h1python-data-types-numpy","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/31506\/","title":{"rendered":"Python Data Types &#8211; NumPy"},"content":{"rendered":"\n<div id=\"wrap\" class=\"wrap-right\">\n    <div id=\"container\">\n        <main class=\"main \">\n            <div class=\"area-main\">\n                <div class=\"area-view\">\n                    <div class=\"article-header\">\n                        <div class=\"inner-article-header\">\n                            <div class=\"box-meta\">\n                                <h2 class=\"title-article\">Python Data Types &#8211; NumPy<\/h2>\n                                <div class=\"box-info\">\n                                    <p class=\"category\">Learning Python<\/p>\n                                    <p class=\"date\">2024-10-16 02:53:43<\/p>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                    <hr>\n                    <div class=\"article-view\">\n                        <div class=\"contents_style\">\n                            <p data-pm-slice=\"1 1 []\" data-ke-size=\"size16\"><span>Python is a popular language that makes scientific computing and data analysis easy. In particular, the library called NumPy is a powerful tool for efficiently handling large-scale data processing. In this article, we will explore what NumPy and NumPy arrays are, how they differ from Python&#8217;s basic data types, and why NumPy plays an important role in the field of data science.<\/span><\/p>\n<h3 data-ke-size=\"size23\"><span>1. Basic Data Types and Lists in Python<\/span><\/h3>\n<p data-ke-size=\"size16\"><span>Python is an intuitive and flexible language that offers various basic data types for storing and processing data. The most common data types include:<\/span><\/p>\n<ul style=\"list-style-type: disc;\" data-spread=\"false\" data-ke-list-type=\"disc\">\n<li><span><b>Integer (int)<\/b><\/span><span>: A data type that represents whole numbers. For example, <\/span><span>a = 5<\/span><span> is an integer variable.<\/span><\/li>\n<li><span><b>Float (float)<\/b><\/span><span>: A data type that represents numbers including decimals. <\/span><span>b = 3.14<\/span><span> is a float variable.<\/span><\/li>\n<li><span><b>String (str)<\/b><\/span><span>: A data type used to store characters; for example, <\/span><span>c = &#8220;Hello&#8221;<\/span><span> is a string.<\/span><\/li>\n<li><span><b>List (list)<\/b><\/span><span>: A data type that can store multiple data items at once, allowing different types to be stored together. An example is <\/span><span>[1, 2.5, &#8220;Python&#8221;]<\/span><span>, which can include integers, floats, and strings.<\/span><\/li>\n<\/ul>\n<p data-ke-size=\"size16\"><span>Lists are versatile data types, but they have some limitations when it comes to scientific computing or handling large-scale data. While lists allow different data types to coexist, this flexibility can lead to inefficiencies in numerical calculations. In such cases, <\/span><span><b>NumPy<\/b><\/span><span> becomes a powerful tool.<\/span><\/p>\n<h3 data-ke-size=\"size23\"><span>2. What is NumPy?<\/span><\/h3>\n<p data-ke-size=\"size16\"><span>**NumPy** is a library that allows for fast and efficient numerical computations in Python. NumPy provides multi-dimensional array objects and various mathematical functions that are optimized for quick processing of large data arrays. The core of NumPy is the N-dimensional array object called <\/span><span><b>ndarray<\/b><\/span><span>.<\/span><\/p>\n<p data-ke-size=\"size16\"><span>NumPy arrays may look similar to Python lists, but there are several important differences. Understanding these differences clarifies why to use NumPy.<\/span><\/p>\n<h3 data-ke-size=\"size23\"><span>3. Differences Between NumPy Arrays and Python Lists<\/span><\/h3>\n<p data-ke-size=\"size16\"><span>NumPy arrays (ndarray) differ from Python lists in the following ways:<\/span><\/p>\n<ol style=\"list-style-type: decimal;\" data-spread=\"true\" data-ke-list-type=\"decimal\">\n<li><span><b>Uniformity of Data Types<\/b><\/span><span>: All elements in a NumPy array have the same data type. This helps improve memory efficiency and operational speed. In contrast, Python lists can contain elements of different data types, which allows for flexibility but can lead to operational constraints and inefficiencies.<\/span><\/li>\n<li><span><b>Fast Operations<\/b><\/span><span>: NumPy implements array operations in C, making them very fast. While using lists requires iterating through each element to compute, NumPy can perform such operations much more efficiently through vectorized operations.<\/span><\/li>\n<li><span><b>Support for Multi-dimensional Arrays<\/b><\/span><span>: Python lists can only be one-dimensional, or can implement multi-dimensional arrays by nesting lists, but this approach becomes difficult to handle as complexity increases. NumPy naturally supports multi-dimensional arrays and allows for a variety of operations on them easily.<\/span><\/li>\n<\/ol>\n<h3 data-ke-size=\"size23\"><span>4. Creating NumPy Arrays<\/span><\/h3>\n<p data-ke-size=\"size16\"><span>There are several ways to create NumPy arrays. The most basic method is to convert a Python list into a NumPy array. Here is a simple example:<\/span><\/p>\n<pre class=\"gauss\"><code>import numpy as np\n\n# Converting a Python list to a NumPy array\npython_list = [1, 2, 3, 4, 5]\nnumpy_array = np.array(python_list)\n\nprint(numpy_array)  # Output: [1 2 3 4 5]\nprint(type(numpy_array))  # Output: &lt;class 'numpy.ndarray'&gt;<\/code><\/pre>\n<p data-ke-size=\"size16\"><span>Additionally, functions such as <\/span><span>np.zeros()<\/span><span>, <\/span><span>np.ones()<\/span><span>, <\/span><span>np.arange()<\/span><span>, <\/span><span>np.linspace()<\/span><span> can be used to generate various shapes of arrays.<\/span><\/p>\n<pre class=\"angelscript\"><code># Creating an array with all elements as 0\nzeros_array = np.zeros((3, 3))  # 3x3 array\n\n# Creating an array with numbers from 1 to 10\nrange_array = np.arange(1, 11)\n\n# Creating an array that divides the range between 0 and 1 into 5 parts\nlinspace_array = np.linspace(0, 1, 5)<\/code><\/pre>\n<h3 data-ke-size=\"size23\"><span>5. Key Features and Applications of NumPy Arrays<\/span><\/h3>\n<p data-ke-size=\"size16\"><span>One of the biggest advantages of NumPy arrays is <\/span><span><b>vectorized operations<\/b><\/span><span>. Vectorized operations mean performing computations on array elements without using loops. For example, the addition of two arrays can be simply implemented as follows:<\/span><\/p>\n<pre class=\"angelscript\"><code>import numpy as np\n\narray1 = np.array([1, 2, 3])\narray2 = np.array([4, 5, 6])\n\n# Adding arrays\nresult = array1 + array2\nprint(result)  # Output: [5 7 9]<\/code><\/pre>\n<p data-ke-size=\"size16\"><span>When using Python lists, performing such addition requires looping through each element, but using NumPy arrays allows achieving the same result with a simple expression.<\/span><\/p>\n<h3 data-ke-size=\"size23\"><span>6. Manipulating the Dimensions of NumPy Arrays<\/span><\/h3>\n<p data-ke-size=\"size16\"><span>NumPy makes it very easy to perform <\/span><span><b>dimension manipulations<\/b><\/span><span> on arrays. For example, you can change the shape of an array, flatten a multi-dimensional array, or concatenate or split arrays along specific axes.<\/span><\/p>\n<pre class=\"angelscript\"><code># Changing the shape of an array\narray = np.array([[1, 2, 3], [4, 5, 6]])\nreshaped_array = array.reshape((3, 2))\n\n# Flattening an array\nflattened_array = array.flatten()\n\n# Concatenating arrays\narray1 = np.array([1, 2, 3])\narray2 = np.array([4, 5, 6])\nconcatenated_array = np.concatenate((array1, array2))<\/code><\/pre>\n<p data-ke-size=\"size16\"><span>NumPy&#8217;s powerful features provide great flexibility and efficiency in handling data.<\/span><\/p>\n<h3 data-ke-size=\"size23\"><span>7. Practical Applications of NumPy<\/span><\/h3>\n<p data-ke-size=\"size16\"><span>NumPy is widely used in data science and machine learning. For example, when working with datasets that contain millions of entries and performing complex mathematical operations on them, NumPy&#8217;s fast operational capabilities are extremely useful. Leveraging NumPy&#8217;s array operations allows easy execution of mathematical statistics calculations, matrix operations, data transformations, etc.<\/span><\/p>\n<pre class=\"maxima\"><code># Calculating mean and standard deviation\narray = np.array([1, 2, 3, 4, 5])\nmean = np.mean(array)  # Calculating mean\nstd_dev = np.std(array)  # Calculating standard deviation<\/code><\/pre>\n<p data-ke-size=\"size16\"><span>Besides that, NumPy offers various mathematical functionalities such as <\/span><span><b>matrix multiplication<\/b><\/span><span> and <\/span><span><b>inverse matrix calculation<\/b><\/span><span>. These functionalities are also used in the basic operations of machine learning algorithms.<\/span><\/p>\n<h3 data-ke-size=\"size23\"><span>8. Conclusion<\/span><\/h3>\n<p data-ke-size=\"size16\"><span>NumPy arrays extend Python&#8217;s basic data types, making it a powerful tool for efficient processing of large-scale data. Through vectorized operations, multi-dimensional array support, and fast computations, NumPy plays an important role in the fields of data science and scientific computing. If you have learned the basic concepts and applications of NumPy through this article, it&#8217;s time to install NumPy and practice various array operations. This will greatly enhance your efficiency in data analysis tasks.<\/span><\/p>\n<p data-ke-size=\"size16\"><span>To further understand and utilize NumPy&#8217;s powerful features, applying it to projects involving real data is the best approach. In the next article, we will introduce how to process data using Pandas and NumPy together. Stay tuned!<\/span><\/p>\n                        <\/div>\n                        <br\/>\n                        <div class=\"tags\">\n                            \n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/main>\n    <\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Python Data Types &#8211; NumPy Learning Python 2024-10-16 02:53:43 Python is a popular language that makes scientific computing and data analysis easy. In particular, the library called NumPy is a powerful tool for efficiently handling large-scale data processing. In this article, we will explore what NumPy and NumPy arrays are, how they differ from Python&#8217;s &hellip; <a href=\"https:\/\/atmokpo.com\/w\/31506\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Python Data Types &#8211; NumPy&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[98],"tags":[95],"class_list":["post-31506","post","type-post","status-publish","format-standard","hentry","category--en","tag--en"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Python Data Types - NumPy - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/31506\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python Data Types - NumPy - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Python Data Types &#8211; NumPy Learning Python 2024-10-16 02:53:43 Python is a popular language that makes scientific computing and data analysis easy. In particular, the library called NumPy is a powerful tool for efficiently handling large-scale data processing. In this article, we will explore what NumPy and NumPy arrays are, how they differ from Python&#8217;s &hellip; \ub354 \ubcf4\uae30 &quot;Python Data Types &#8211; NumPy&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/31506\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T08:39:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T08:40:33+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"5\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/31506\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/31506\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Python Data Types &#8211; NumPy\",\"datePublished\":\"2024-11-01T08:39:03+00:00\",\"dateModified\":\"2024-11-01T08:40:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/31506\/\"},\"wordCount\":810,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"keywords\":[\"\ud30c\uc774\uc36c\uac15\uc88c\"],\"articleSection\":[\"Python Study\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/31506\/\",\"url\":\"https:\/\/atmokpo.com\/w\/31506\/\",\"name\":\"Python Data Types - NumPy - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T08:39:03+00:00\",\"dateModified\":\"2024-11-01T08:40:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/31506\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/31506\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/31506\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python Data Types &#8211; NumPy\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Python Data Types - NumPy - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","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:\/\/atmokpo.com\/w\/31506\/","og_locale":"ko_KR","og_type":"article","og_title":"Python Data Types - NumPy - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Python Data Types &#8211; NumPy Learning Python 2024-10-16 02:53:43 Python is a popular language that makes scientific computing and data analysis easy. In particular, the library called NumPy is a powerful tool for efficiently handling large-scale data processing. In this article, we will explore what NumPy and NumPy arrays are, how they differ from Python&#8217;s &hellip; \ub354 \ubcf4\uae30 \"Python Data Types &#8211; NumPy\"","og_url":"https:\/\/atmokpo.com\/w\/31506\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T08:39:03+00:00","article_modified_time":"2024-11-01T08:40:33+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"5\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/31506\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/31506\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Python Data Types &#8211; NumPy","datePublished":"2024-11-01T08:39:03+00:00","dateModified":"2024-11-01T08:40:33+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/31506\/"},"wordCount":810,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"keywords":["\ud30c\uc774\uc36c\uac15\uc88c"],"articleSection":["Python Study"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/31506\/","url":"https:\/\/atmokpo.com\/w\/31506\/","name":"Python Data Types - NumPy - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T08:39:03+00:00","dateModified":"2024-11-01T08:40:33+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/31506\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/31506\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/31506\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Python Data Types &#8211; NumPy"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/31506","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=31506"}],"version-history":[{"count":2,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/31506\/revisions"}],"predecessor-version":[{"id":31508,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/31506\/revisions\/31508"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=31506"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=31506"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=31506"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}