{"id":31719,"date":"2024-11-01T09:02:06","date_gmt":"2024-11-01T09:02:06","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=31719"},"modified":"2024-11-01T11:48:33","modified_gmt":"2024-11-01T11:48:33","slug":"built-in-functions-of-python","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/31719\/","title":{"rendered":"Built-in Functions of Python"},"content":{"rendered":"\n<figure class=\"wp-block-audio\"><audio controls src=\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/10\/Fable_tts-1_1x_2024-10-25T15_13_22-580Z.mp3\"><\/audio><\/figure>\n\n\n\n<p>Python provides a rich set of built-in functions for developers. These functions help to perform common programming tasks conveniently. In this article, we will take a closer look at these built-in functions and explore how to use each function along with examples.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">1.&nbsp;<code>print()<\/code>&nbsp;function<\/h2>\n\n\n\n<p>The <code>print()<\/code> function is one of the most commonly used functions, and it is used to display output on the console. It can take multiple arguments and concatenate them into a single string for output, adding spaces between the strings by default.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>print(\"Hello, World!\")\nprint(\"Python\", \"is\", \"fun\")<\/code><\/pre>\n\n\n\n<p>Result:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Hello, World!\nPython is fun<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">2.&nbsp;<code>len()<\/code>&nbsp;function<\/h2>\n\n\n\n<p>The <code>len()<\/code> function returns the length of an object. It is primarily used with sequence data types such as strings, lists, tuples, and dictionaries.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>string = \"Python\"\nprint(len(string))\n\nnumbers = [1, 2, 3, 4, 5]\nprint(len(numbers))<\/code><\/pre>\n\n\n\n<p>Result:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">6\n5<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">3.&nbsp;<code>type()<\/code>&nbsp;function<\/h2>\n\n\n\n<p>The <code>type()<\/code> function returns the data type of an object. This function is useful for checking if a variable has the expected type.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>print(type(3))\nprint(type(3.0))\nprint(type(\"Hello\"))<\/code><\/pre>\n\n\n\n<p>Result:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;class 'int'&gt;\n&lt;class 'float'&gt;\n&lt;class 'str'&gt;<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">4.&nbsp;<code>input()<\/code>&nbsp;function<\/h2>\n\n\n\n<p>The <code>input()<\/code> function is used to receive string input from the user. In Python 3.x, it always receives input as a string.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>name = input(\"Enter your name: \")\nprint(\"Hello, \" + name + \"!\")<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">5.&nbsp;<code>sum()<\/code>&nbsp;function<\/h2>\n\n\n\n<p>The <code>sum()<\/code> function calculates the sum of a sequence of numbers. This function is primarily used to sum lists or tuples.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>numbers = [1, 2, 3, 4, 5]\nprint(sum(numbers))<\/code><\/pre>\n\n\n\n<p>Result:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">15<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">6.&nbsp;<code>min()<\/code> and&nbsp;<code>max()<\/code>&nbsp;functions<\/h2>\n\n\n\n<p>The <code>min()<\/code> function returns the minimum value from a sequence, while the <code>max()<\/code> function returns the maximum value. These functions are useful for finding the minimum and maximum values in a numerical sequence.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>numbers = [3, 1, 4, 1, 5, 9]\nprint(min(numbers))\nprint(max(numbers))<\/code><\/pre>\n\n\n\n<p>Result:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">1\n9<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">7.&nbsp;<code>sorted()<\/code>&nbsp;function<\/h2>\n\n\n\n<p>The <code>sorted()<\/code> function returns a sorted list from the given sequence. This function does not modify the original list and creates a new sorted list. By default, it sorts in ascending order, and using <code>reverse=True<\/code> sorts in descending order.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>numbers = [3, 1, 4, 1, 5, 9]\nprint(sorted(numbers))\nprint(sorted(numbers, reverse=True))<\/code><\/pre>\n\n\n\n<p>Result:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[1, 1, 3, 4, 5, 9]\n[9, 5, 4, 3, 1, 1]<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">8.&nbsp;<code>any()<\/code> and&nbsp;<code>all()<\/code>&nbsp;functions<\/h2>\n\n\n\n<p>The <code>any()<\/code> function returns <code>True<\/code> if at least one element in the sequence is <code>True<\/code>, otherwise it returns <code>False<\/code>. The <code>all()<\/code> function returns <code>True<\/code> if all elements are <code>True<\/code>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>bool_list = [True, False, True]\nprint(any(bool_list))\nprint(all(bool_list))<\/code><\/pre>\n\n\n\n<p>Result:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">True\nFalse<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">9.&nbsp;<code>zip()<\/code>&nbsp;function<\/h2>\n\n\n\n<p>The <code>zip()<\/code> function combines multiple sequences together in parallel. It takes the elements from each sequence and combines them into tuples, limiting the output to the length of the shortest sequence.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>list1 = [1, 2, 3]\nlist2 = ['a', 'b', 'c']\nzipped = zip(list1, list2)\nprint(list(zipped))<\/code><\/pre>\n\n\n\n<p>Result:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[(1, 'a'), (2, 'b'), (3, 'c')]<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">10.&nbsp;<code>enumerate()<\/code>&nbsp;function<\/h2>\n\n\n\n<p>The <code>enumerate()<\/code> function returns the elements of a sequence as tuples along with their indices. By default, the index starts at 0, but it can be changed to start at any other number.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>letters = ['a', 'b', 'c']\nfor index, letter in enumerate(letters):\n    print(index, letter)<\/code><\/pre>\n\n\n\n<p>Result:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">0 a\n1 b\n2 c<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">11.&nbsp;<code>range()<\/code>&nbsp;function<\/h2>\n\n\n\n<p>The <code>range()<\/code> function generates a sequence of integers. This sequence is primarily used in loops. <code>range()<\/code> can take three arguments, representing the start value, the end value, and the step value.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>for i in range(5):\n    print(i)\n\nfor i in range(1, 10, 2):\n    print(i)<\/code><\/pre>\n\n\n\n<p>Result:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">0\n1\n2\n3\n4\n1\n3\n5\n7\n9<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">12.&nbsp;<code>filter()<\/code>&nbsp;function<\/h2>\n\n\n\n<p>The <code>filter()<\/code> function takes a function and a sequence and filters the elements that satisfy the condition of the function. The result is a filter object, which can be converted to a list using <code>list()<\/code>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>def is_even(n):\n    return n % 2 == 0\n\nnumbers = [1, 2, 3, 4, 5, 6]\neven_numbers = filter(is_even, numbers)\nprint(list(even_numbers))<\/code><\/pre>\n\n\n\n<p>Result:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[2, 4, 6]<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">13.&nbsp;<code>map()<\/code>&nbsp;function<\/h2>\n\n\n\n<p>The <code>map()<\/code> function takes a function and a sequence and returns the results of applying the function. It is useful for applying a function to all given elements.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>def square(n):\n    return n * n\n\nnumbers = [1, 2, 3, 4, 5]\nsquared_numbers = map(square, numbers)\nprint(list(squared_numbers))<\/code><\/pre>\n\n\n\n<p>Result:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[1, 4, 9, 16, 25]<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">14.&nbsp;<code>reduce()<\/code>&nbsp;function<\/h2>\n\n\n\n<p>The <code>reduce()<\/code> function performs cumulative calculations and returns a single result. The <code>reduce()<\/code> function must be imported from the <code>functools<\/code> module. Its primary use case is to accumulate values across a sequence.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>from functools import reduce\n\ndef add(x, y):\n    return x + y\n\nnumbers = [1, 2, 3, 4, 5]\ntotal = reduce(add, numbers)\nprint(total)<\/code><\/pre>\n\n\n\n<p>Result:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">15<\/pre>\n\n\n\n<p>The examples above showcase several built-in functions in Python, exploring the characteristics and usage of each function. Additionally, Python offers various other built-in functions that help solve specific tasks more easily and quickly.<\/p>\n\n\n\n<p>By understanding how to use these functions effectively, you can write more efficient and readable code. Built-in functions are essential tools to achieve this goal.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Python provides a rich set of built-in functions for developers. These functions help to perform common programming tasks conveniently. In this article, we will take a closer look at these built-in functions and explore how to use each function along with examples. 1.&nbsp;print()&nbsp;function The print() function is one of the most commonly used functions, and &hellip; <a href=\"https:\/\/atmokpo.com\/w\/31719\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Built-in Functions of Python&#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-31719","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>Built-in Functions of Python - \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\/31719\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Built-in Functions of Python - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Python provides a rich set of built-in functions for developers. These functions help to perform common programming tasks conveniently. In this article, we will take a closer look at these built-in functions and explore how to use each function along with examples. 1.&nbsp;print()&nbsp;function The print() function is one of the most commonly used functions, and &hellip; \ub354 \ubcf4\uae30 &quot;Built-in Functions of Python&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/31719\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:02:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:48: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=\"4\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/31719\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/31719\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Built-in Functions of Python\",\"datePublished\":\"2024-11-01T09:02:06+00:00\",\"dateModified\":\"2024-11-01T11:48:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/31719\/\"},\"wordCount\":559,\"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\/31719\/\",\"url\":\"https:\/\/atmokpo.com\/w\/31719\/\",\"name\":\"Built-in Functions of Python - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:02:06+00:00\",\"dateModified\":\"2024-11-01T11:48:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/31719\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/31719\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/31719\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Built-in Functions of Python\"}]},{\"@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":"Built-in Functions of Python - \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\/31719\/","og_locale":"ko_KR","og_type":"article","og_title":"Built-in Functions of Python - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Python provides a rich set of built-in functions for developers. These functions help to perform common programming tasks conveniently. In this article, we will take a closer look at these built-in functions and explore how to use each function along with examples. 1.&nbsp;print()&nbsp;function The print() function is one of the most commonly used functions, and &hellip; \ub354 \ubcf4\uae30 \"Built-in Functions of Python\"","og_url":"https:\/\/atmokpo.com\/w\/31719\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:02:06+00:00","article_modified_time":"2024-11-01T11:48: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":"4\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/31719\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/31719\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Built-in Functions of Python","datePublished":"2024-11-01T09:02:06+00:00","dateModified":"2024-11-01T11:48:33+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/31719\/"},"wordCount":559,"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\/31719\/","url":"https:\/\/atmokpo.com\/w\/31719\/","name":"Built-in Functions of Python - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:02:06+00:00","dateModified":"2024-11-01T11:48:33+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/31719\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/31719\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/31719\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Built-in Functions of Python"}]},{"@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\/31719","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=31719"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/31719\/revisions"}],"predecessor-version":[{"id":31720,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/31719\/revisions\/31720"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=31719"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=31719"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=31719"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}