{"id":31679,"date":"2024-11-01T09:01:38","date_gmt":"2024-11-01T09:01:38","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=31679"},"modified":"2024-11-01T11:48:42","modified_gmt":"2024-11-01T11:48:42","slug":"02-3-basics-of-python-programming-list-data-type","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/31679\/","title":{"rendered":"02-3 Basics of Python Programming, List Data Type"},"content":{"rendered":"\n<h1 class=\"wp-block-heading\">02-3 The Basics of Python Programming, List Data Type<\/h1>\n\n\n\n<p>Hello, in this course, we will take a deep dive into Python&#8217;s list data type. Python lists are a very powerful tool for storing and manipulating data. In this article, we will cover everything from the basic usage of lists to advanced features.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is a List?<\/h2>\n\n\n\n<p>A Python list is an ordered collection that can hold items of different data types, and it is a mutable array. The characteristics of Python lists are as follows:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The size of a list can be changed flexibly.<\/li>\n\n\n\n<li>Lists can store various data types.<\/li>\n\n\n\n<li>Each element of the list can be accessed through its index.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Creating and Initializing a List<\/h3>\n\n\n\n<p>Creating a list is very simple. You can use square brackets ([]) to enclose items separated by commas.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\n# Create an empty list\nempty_list = []\n\n# Create a list of numbers\nnumbers = [1, 2, 3, 4, 5]\n\n# Create a list of strings\nstrings = [\"apple\", \"banana\", \"cherry\"]\n\n# Create a list containing various data types\nmixed_list = [1, \"hello\", 3.14, True]\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">List Indexing and Slicing<\/h3>\n\n\n\n<p>Each element of a list can be accessed using an index that starts from 0. Additionally, through the slicing feature, you can easily obtain subsets of a list.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\nfruits = [\"apple\", \"banana\", \"cherry\", \"date\", \"fig\"]\n\n# Indexing\nprint(fruits[0])  # apple\nprint(fruits[2])  # cherry\n\n# Slicing\nprint(fruits[1:3])  # ['banana', 'cherry']\nprint(fruits[:2])   # ['apple', 'banana']\nprint(fruits[3:])   # ['date', 'fig']\n\n# Negative indexing\nprint(fruits[-1])  # fig\nprint(fruits[-3:]) # ['cherry', 'date', 'fig']\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">List Concatenation and Repetition<\/h3>\n\n\n\n<p>Lists can be concatenated using the + operator and repeated using the * operator.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\n# List concatenation\nlist1 = [1, 2, 3]\nlist2 = [4, 5, 6]\ncombined_list = list1 + list2\nprint(combined_list)  # [1, 2, 3, 4, 5, 6]\n\n# List repetition\nrepeated_list = list1 * 3\nprint(repeated_list)  # [1, 2, 3, 1, 2, 3, 1, 2, 3]\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Modifying Lists<\/h3>\n\n\n\n<p>To change a specific element of a list, you assign a value using the index. Also, you can add or remove elements from a list.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\nnumbers = [1, 2, 3, 4, 5]\n\n# Modify an element\nnumbers[2] = 99\nprint(numbers)  # [1, 2, 99, 4, 5]\n\n# Add an element\nnumbers.append(6)\nprint(numbers)  # [1, 2, 99, 4, 5, 6]\n\n# Extend the list\nnumbers.extend([7, 8, 9])\nprint(numbers)  # [1, 2, 99, 4, 5, 6, 7, 8, 9]\n\n# Insert an element\nnumbers.insert(0, 0)\nprint(numbers)  # [0, 1, 2, 99, 4, 5, 6, 7, 8, 9]\n\n# Remove an element\ndel numbers[2]\nprint(numbers)  # [0, 1, 99, 4, 5, 6, 7, 8, 9]\n\nnumbers.remove(99)\nprint(numbers)  # [0, 1, 4, 5, 6, 7, 8, 9]\n\n# Clear the list\nnumbers.clear()\nprint(numbers)  # []\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">List Methods<\/h3>\n\n\n\n<p>Python lists offer a variety of useful methods. You can use these methods to extend the functionality of lists.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\nnumbers = [3, 6, 1, 7, 2, 8, 10, 4]\n\n# Length of the list\nlength = len(numbers)\nprint(length)  # 8\n\n# Maximum\/Minimum value in the list\nmax_value = max(numbers)\nmin_value = min(numbers)\nprint(max_value)  # 10\nprint(min_value)  # 1\n\n# Finding the index of an element\nindex_of_seven = numbers.index(7)\nprint(index_of_seven)  # 3\n\n# Counting occurrences of an element\ncount_of_ten = numbers.count(10)\nprint(count_of_ten)  # 1\n\n# Sorting the list\nnumbers.sort()\nprint(numbers)  # [1, 2, 3, 4, 6, 7, 8, 10]\n\n# Sorting the list in reverse order\nnumbers.sort(reverse=True)\nprint(numbers)  # [10, 8, 7, 6, 4, 3, 2, 1]\n\n# Reversing the list\nnumbers.reverse()\nprint(numbers)  # [1, 2, 3, 4, 6, 7, 8, 10]\n\n# Copying the list\nnumbers_copy = numbers.copy()\nprint(numbers_copy)  # [1, 2, 3, 4, 6, 7, 8, 10]\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Advanced Uses of Lists<\/h2>\n\n\n\n<p>Lists provide a variety of advanced functionalities that can be used effectively. Next, we will learn about list comprehensions, nested lists, and various transformation operations.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">List Comprehensions<\/h3>\n\n\n\n<p>List comprehensions are a concise way to create new lists based on existing lists. They enhance code readability and often improve execution speed.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\n# Creating a list in a typical way\nsquares = []\nfor x in range(10):\n    squares.append(x**2)\n\nprint(squares)  # [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]\n\n# List comprehension\nsquares = [x**2 for x in range(10)]\nprint(squares)  # [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]\n\n# List comprehension with a condition\neven_squares = [x**2 for x in range(10) if x % 2 == 0]\nprint(even_squares)  # [0, 4, 16, 36, 64]\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Nested Lists<\/h3>\n\n\n\n<p>Lists can contain other lists as elements, allowing you to create multi-dimensional data structures. Nested lists are particularly useful for handling multi-dimensional data like matrices.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\n# Example of a nested list: 2x3 matrix\nmatrix = [\n    [1, 2, 3],\n    [4, 5, 6]\n]\n\n# Accessing elements of a nested list\nfirst_row = matrix[0]\nprint(first_row)  # [1, 2, 3]\n\nelement = matrix[1][2]\nprint(element)  # 6\n\n# Transposing a matrix\ntranspose = [[row[i] for row in matrix] for i in range(3)]\nprint(transpose)  # [[1, 4], [2, 5], [3, 6]]\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">List Transformations<\/h3>\n\n\n\n<p>Lists can be easily transformed into other data structures, allowing you to alter the form of the data or create new structures with specific characteristics.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\n# Converting a list to a string\nwords = ['Python', 'is', 'awesome']\nsentence = ' '.join(words)\nprint(sentence)  # \"Python is awesome\"\n\n# Converting a string to a list\nletters = list(\"Python\")\nprint(letters)  # ['P', 'y', 't', 'h', 'o', 'n']\n\n# Converting lists and tuples\ntuple_from_list = tuple(numbers)\nprint(tuple_from_list)  # (1, 2, 3, 4, 6, 7, 8, 10)\n\nlist_from_tuple = list((1, 2, 3))\nprint(list_from_tuple)  # [1, 2, 3]\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>In this lesson, we explored Python&#8217;s list data type. Lists are one of the most widely used data structures in Python, offering a powerful tool for flexibly handling various data. By understanding both basic and advanced usage, I hope you upgrade your Python programming skills. In future lessons, we will cover even more diverse topics and applications, so I hope you look forward to it!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>02-3 The Basics of Python Programming, List Data Type Hello, in this course, we will take a deep dive into Python&#8217;s list data type. Python lists are a very powerful tool for storing and manipulating data. In this article, we will cover everything from the basic usage of lists to advanced features. What is a &hellip; <a href=\"https:\/\/atmokpo.com\/w\/31679\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;02-3 Basics of Python Programming, List Data Type&#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-31679","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>02-3 Basics of Python Programming, List Data Type - \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\/31679\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"02-3 Basics of Python Programming, List Data Type - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"02-3 The Basics of Python Programming, List Data Type Hello, in this course, we will take a deep dive into Python&#8217;s list data type. Python lists are a very powerful tool for storing and manipulating data. In this article, we will cover everything from the basic usage of lists to advanced features. What is a &hellip; \ub354 \ubcf4\uae30 &quot;02-3 Basics of Python Programming, List Data Type&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/31679\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:01:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:48:42+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\/31679\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/31679\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"02-3 Basics of Python Programming, List Data Type\",\"datePublished\":\"2024-11-01T09:01:38+00:00\",\"dateModified\":\"2024-11-01T11:48:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/31679\/\"},\"wordCount\":412,\"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\/31679\/\",\"url\":\"https:\/\/atmokpo.com\/w\/31679\/\",\"name\":\"02-3 Basics of Python Programming, List Data Type - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:01:38+00:00\",\"dateModified\":\"2024-11-01T11:48:42+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/31679\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/31679\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/31679\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"02-3 Basics of Python Programming, List Data Type\"}]},{\"@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":"02-3 Basics of Python Programming, List Data Type - \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\/31679\/","og_locale":"ko_KR","og_type":"article","og_title":"02-3 Basics of Python Programming, List Data Type - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"02-3 The Basics of Python Programming, List Data Type Hello, in this course, we will take a deep dive into Python&#8217;s list data type. Python lists are a very powerful tool for storing and manipulating data. In this article, we will cover everything from the basic usage of lists to advanced features. What is a &hellip; \ub354 \ubcf4\uae30 \"02-3 Basics of Python Programming, List Data Type\"","og_url":"https:\/\/atmokpo.com\/w\/31679\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:01:38+00:00","article_modified_time":"2024-11-01T11:48:42+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\/31679\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/31679\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"02-3 Basics of Python Programming, List Data Type","datePublished":"2024-11-01T09:01:38+00:00","dateModified":"2024-11-01T11:48:42+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/31679\/"},"wordCount":412,"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\/31679\/","url":"https:\/\/atmokpo.com\/w\/31679\/","name":"02-3 Basics of Python Programming, List Data Type - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:01:38+00:00","dateModified":"2024-11-01T11:48:42+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/31679\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/31679\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/31679\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"02-3 Basics of Python Programming, List Data Type"}]},{"@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\/31679","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=31679"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/31679\/revisions"}],"predecessor-version":[{"id":31680,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/31679\/revisions\/31680"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=31679"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=31679"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=31679"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}