{"id":13285,"date":"2023-10-03T17:54:40","date_gmt":"2023-10-03T17:54:40","guid":{"rendered":"https:\/\/www.digitaldesignjournal.com\/?p=13285"},"modified":"2023-10-03T17:59:25","modified_gmt":"2023-10-03T17:59:25","slug":"python-list-to-tuple","status":"publish","type":"post","link":"https:\/\/www.digitaldesignjournal.com\/python-list-to-tuple\/","title":{"rendered":"Python List to Tuple [Detailed Explanation]"},"content":{"rendered":"\n<p>I&#8217;ll provide a detailed explanation with an example of how to convert a Python list to a tuple.<\/p>\n\n\n\n<p><strong>Step 1: Create a List<\/strong>: First, you need to create a list containing the elements you want to convert to a tuple. Here&#8217;s an example list:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-1\" data-shcb-language-name=\"Python\" data-shcb-language-slug=\"python\"><span><code class=\"hljs language-python\">my_list = &#91;<span class=\"hljs-number\">1<\/span>, <span class=\"hljs-number\">2<\/span>, <span class=\"hljs-number\">3<\/span>, <span class=\"hljs-number\">4<\/span>, <span class=\"hljs-number\">5<\/span>]\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-1\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Python<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">python<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>In this example, <code>my_list<\/code> is a list containing five integer elements.<\/p>\n\n\n\n<p><strong>Step 2: Convert the List to a Tuple<\/strong>: To convert the list to a tuple, you can use the <code>tuple()<\/code> constructor. This function takes the list as an argument and returns a new tuple containing the same elements. Here&#8217;s how you can do it:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-2\" data-shcb-language-name=\"Python\" data-shcb-language-slug=\"python\"><span><code class=\"hljs language-python\">my_tuple = tuple(my_list)\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-2\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Python<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">python<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>In this line of code, <code>tuple(my_list)<\/code> takes <code>my_list<\/code> as input and converts it into a tuple. The result is stored in the variable <code>my_tuple<\/code>.<\/p>\n\n\n\n<p><strong>Step 3: Use the Converted Tuple<\/strong>: Now, you have successfully converted the list to a tuple. You can use the <code>my_tuple<\/code> variable just like any other tuple. For example, you can access its elements using indexing:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-3\" data-shcb-language-name=\"Python\" data-shcb-language-slug=\"python\"><span><code class=\"hljs language-python\">print(my_tuple&#91;<span class=\"hljs-number\">0<\/span>])  <span class=\"hljs-comment\"># Output: 1<\/span>\nprint(my_tuple&#91;<span class=\"hljs-number\">2<\/span>])  <span class=\"hljs-comment\"># Output: 3<\/span>\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-3\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Python<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">python<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>You can also iterate through the tuple using a loop, apply tuple-specific methods, and perform various operations on it.<\/p>\n\n\n\n<p>Here&#8217;s the complete code:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-4\" data-shcb-language-name=\"Python\" data-shcb-language-slug=\"python\"><span><code class=\"hljs language-python\">my_list = &#91;<span class=\"hljs-number\">1<\/span>, <span class=\"hljs-number\">2<\/span>, <span class=\"hljs-number\">3<\/span>, <span class=\"hljs-number\">4<\/span>, <span class=\"hljs-number\">5<\/span>]  <span class=\"hljs-comment\"># Step 1: Create a list<\/span>\nmy_tuple = tuple(my_list)  <span class=\"hljs-comment\"># Step 2: Convert the list to a tuple<\/span>\n\n<span class=\"hljs-comment\"># Now you can use my_tuple as a tuple<\/span>\nprint(my_tuple&#91;<span class=\"hljs-number\">0<\/span>])  <span class=\"hljs-comment\"># Output: 1<\/span>\nprint(my_tuple&#91;<span class=\"hljs-number\">2<\/span>])  <span class=\"hljs-comment\"># Output: 3<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-4\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Python<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">python<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>This is how you convert a list to a tuple in Python, and then you can work with the resulting tuple as needed.<\/p>\n\n\n\n<p><strong><span style=\"text-decoration: underline;\">Example 2 <\/span><\/strong><\/p>\n\n\n\n<p>here&#8217;s an example of converting a Python list containing non-numeric elements to a tuple:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-5\" data-shcb-language-name=\"Python\" data-shcb-language-slug=\"python\"><span><code class=\"hljs language-python\"><span class=\"hljs-comment\"># Create a list with non-numeric elements<\/span>\nmy_list = &#91;<span class=\"hljs-string\">\"apple\"<\/span>, <span class=\"hljs-string\">\"banana\"<\/span>, <span class=\"hljs-string\">\"cherry\"<\/span>, <span class=\"hljs-string\">\"date\"<\/span>, <span class=\"hljs-string\">\"elderberry\"<\/span>]\n\n<span class=\"hljs-comment\"># Convert the list to a tuple<\/span>\nmy_tuple = tuple(my_list)\n\n<span class=\"hljs-comment\"># Print the original list and the converted tuple<\/span>\nprint(<span class=\"hljs-string\">\"Original List:\"<\/span>, my_list)\nprint(<span class=\"hljs-string\">\"Converted Tuple:\"<\/span>, my_tuple)\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-5\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Python<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">python<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>In this example:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>We create a list called <code>my_list<\/code> with five string elements representing fruits.<\/li>\n\n\n\n<li>We then use the <code>tuple()<\/code> constructor to convert <code>my_list<\/code> into a tuple and store the result in <code>my_tuple<\/code>.<\/li>\n\n\n\n<li>Finally, we print both the original list and the converted tuple to see the difference.<\/li>\n<\/ol>\n\n\n\n<p>When you run this code, you will observe that the list of strings has been successfully converted to a tuple:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-6\" data-shcb-language-name=\"Python\" data-shcb-language-slug=\"python\"><span><code class=\"hljs language-python\">Original List: &#91;<span class=\"hljs-string\">'apple'<\/span>, <span class=\"hljs-string\">'banana'<\/span>, <span class=\"hljs-string\">'cherry'<\/span>, <span class=\"hljs-string\">'date'<\/span>, <span class=\"hljs-string\">'elderberry'<\/span>]\nConverted Tuple: (<span class=\"hljs-string\">'apple'<\/span>, <span class=\"hljs-string\">'banana'<\/span>, <span class=\"hljs-string\">'cherry'<\/span>, <span class=\"hljs-string\">'date'<\/span>, <span class=\"hljs-string\">'elderberry'<\/span>)\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-6\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Python<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">python<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<h2 class=\"wp-block-heading\">Alternative ways to convert a Python list to a tuple:<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Using Tuple Packing: <\/strong>You can create a tuple directly by enclosing elements in parentheses without using the <code>tuple()<\/code> constructor. This is often referred to as tuple packing.<\/li>\n<\/ol>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-7\" data-shcb-language-name=\"Python\" data-shcb-language-slug=\"python\"><span><code class=\"hljs language-python\">my_list = &#91;<span class=\"hljs-number\">1<\/span>, <span class=\"hljs-number\">2<\/span>, <span class=\"hljs-number\">3<\/span>, <span class=\"hljs-number\">4<\/span>, <span class=\"hljs-number\">5<\/span>]\nmy_tuple = (*my_list,)\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-7\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Python<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">python<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>In this example, <code>(*my_list,)<\/code> creates a tuple containing the elements of <code>my_list<\/code>.<\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"2\">\n<li><strong>Using Tuple Packing: <\/strong>You can also use the <code>+<\/code> operator to concatenate an empty tuple with your list, effectively converting it to a tuple.<\/li>\n<\/ol>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-8\" data-shcb-language-name=\"Python\" data-shcb-language-slug=\"python\"><span><code class=\"hljs language-python\">my_list = &#91;<span class=\"hljs-number\">1<\/span>, <span class=\"hljs-number\">2<\/span>, <span class=\"hljs-number\">3<\/span>, <span class=\"hljs-number\">4<\/span>, <span class=\"hljs-number\">5<\/span>]\nmy_tuple = () + tuple(my_list)<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-8\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Python<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">python<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Here, <code>()<\/code> creates an empty tuple, and then <code>tuple(my_list)<\/code> converts <code>my_list<\/code> to a tuple. Adding these two tuples together results in a new tuple with the elements from the list.<\/p>\n\n\n\n<p>These are additional methods to achieve the same result as converting a list to a tuple.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is the function in Python that is used to convert a list into a tuple?<\/h2>\n\n\n\n<p>The function used to convert a list to a tuple in Python is the <code>tuple()<\/code> constructor. You can pass a list as an argument to <code>tuple()<\/code>, and it will return a tuple containing the same elements as the list. Here&#8217;s an example:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-9\" data-shcb-language-name=\"Python\" data-shcb-language-slug=\"python\"><span><code class=\"hljs language-python\">my_list = &#91;<span class=\"hljs-number\">1<\/span>, <span class=\"hljs-number\">2<\/span>, <span class=\"hljs-number\">3<\/span>, <span class=\"hljs-number\">4<\/span>, <span class=\"hljs-number\">5<\/span>]\nmy_tuple = tuple(my_list)\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-9\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Python<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">python<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>In this example, <code>tuple(my_list)<\/code> converts the <code>my_list<\/code> into a tuple, and the result is stored in <code>my_tuple<\/code>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to add list to tuple in Python?<\/h2>\n\n\n\n<p>You cannot directly add a list to a tuple because tuples are immutable, which means you cannot modify them after they are created. However, you can concatenate a tuple and a list to create a new tuple that contains the elements from both the tuple and the list. Here&#8217;s how you can do it:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-10\" data-shcb-language-name=\"Python\" data-shcb-language-slug=\"python\"><span><code class=\"hljs language-python\">my_tuple = (<span class=\"hljs-number\">1<\/span>, <span class=\"hljs-number\">2<\/span>, <span class=\"hljs-number\">3<\/span>)\nmy_list = &#91;<span class=\"hljs-number\">4<\/span>, <span class=\"hljs-number\">5<\/span>, <span class=\"hljs-number\">6<\/span>]\n\n<span class=\"hljs-comment\"># Concatenate the tuple and list to create a new tuple<\/span>\ncombined_tuple = my_tuple + tuple(my_list)\n\nprint(combined_tuple)\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-10\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Python<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">python<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>In this example, we first convert the <code>my_list<\/code> to a tuple using <code>tuple(my_list)<\/code> and then use the <code>+<\/code> operator to concatenate the two tuples (<code>my_tuple<\/code> and the converted <code>my_list<\/code>) to create a new tuple called <code>combined_tuple<\/code>. This <code>combined_tuple<\/code> contains the elements from both the original tuple and the list.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How can I convert a tuple to a list and then revert it back to a tuple in Python?<\/h2>\n\n\n\n<p>You can convert a tuple to a list and then back to a tuple in Python. Here&#8217;s how you can do it:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Convert a Tuple to a List: <\/strong>To convert a tuple to a list, you can use the <code>list()<\/code> constructor. Here&#8217;s an example:<\/li>\n<\/ol>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-11\" data-shcb-language-name=\"Python\" data-shcb-language-slug=\"python\"><span><code class=\"hljs language-python\">my_tuple = (<span class=\"hljs-number\">1<\/span>, <span class=\"hljs-number\">2<\/span>, <span class=\"hljs-number\">3<\/span>, <span class=\"hljs-number\">4<\/span>, <span class=\"hljs-number\">5<\/span>)\nmy_list = list(my_tuple)\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-11\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Python<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">python<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>In this example, <code>list(my_tuple)<\/code> converts the <code>my_tuple<\/code> into a list, and the result is stored in <code>my_list<\/code>.<\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"2\">\n<li><strong>Convert a List Back to a Tuple:<\/strong> To convert a list back to a tuple, you can use the <code>tuple()<\/code> constructor. Here&#8217;s an example:<\/li>\n<\/ol>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-12\" data-shcb-language-name=\"Python\" data-shcb-language-slug=\"python\"><span><code class=\"hljs language-python\">my_list = &#91;<span class=\"hljs-number\">1<\/span>, <span class=\"hljs-number\">2<\/span>, <span class=\"hljs-number\">3<\/span>, <span class=\"hljs-number\">4<\/span>, <span class=\"hljs-number\">5<\/span>]\nmy_tuple = tuple(my_list)\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-12\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Python<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">python<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>In this example, <code>tuple(my_list)<\/code> converts the <code>my_list<\/code> into a tuple, and the result is stored in <code>my_tuple<\/code>.<\/p>\n\n\n\n<p>After these operations, you have successfully converted the data structure from a tuple to a list and back to a tuple.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How can I convert a single-element list to a tuple in Python in a precise and correct manner?<\/h2>\n\n\n\n<p>To perfectly convert a one-element list to a tuple in Python, you can use a comma <code>,<\/code> after the single element within the parentheses. This is necessary because a single element inside parentheses alone is not considered a tuple; it&#8217;s just the element enclosed in parentheses. Adding the comma ensures that Python recognizes it as a tuple with one element. Here&#8217;s how you can do it:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-13\" data-shcb-language-name=\"Python\" data-shcb-language-slug=\"python\"><span><code class=\"hljs language-python\">my_list = &#91;<span class=\"hljs-number\">42<\/span>]  <span class=\"hljs-comment\"># A one-element list<\/span>\nmy_tuple = tuple(my_list)  <span class=\"hljs-comment\"># Incorrect without a comma<\/span>\n\n<span class=\"hljs-comment\"># Correct way to convert a one-element list to a tuple:<\/span>\nmy_tuple = tuple(my_list,)  <span class=\"hljs-comment\"># Note the comma after the element<\/span>\n\nprint(my_tuple)  <span class=\"hljs-comment\"># Output: (42,)<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-13\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Python<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">python<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>In this example, <code>tuple(my_list,)<\/code> correctly converts the one-element list <code>[42]<\/code> to a tuple <code>(42,)<\/code>, ensuring that it&#8217;s recognized as a tuple with a single element.<\/p>\n\n\n\n<p><strong>Read More;<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/www.digitaldesignjournal.com\/python-subprocess-tutorial\/\">Python Subprocess Tutorial<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.digitaldesignjournal.com\/subprocess-python-stdout\/\">Subprocess Python Stdout<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.digitaldesignjournal.com\/python-subprocess-stderr\/\">Python Subprocess Stderr<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.digitaldesignjournal.com\/python-asyncio-subprocess\/\">Python Asyncio Subprocess [Asynchronous Subprocesses]<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.digitaldesignjournal.com\/subprocess-popen-vs-subprocess-run\/\">Subprocess.popen And Subprocess.run<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.digitaldesignjournal.com\/python-subprocess-popen\/\">Python Subprocess.popen<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.digitaldesignjournal.com\/subprocess-popen-vs-call\/\">&nbsp;Difference Between Subprocess Popen And Call<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.digitaldesignjournal.com\/tuple-methods-in-python\/\">5 Tuple Methods in Python [Explained]<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.digitaldesignjournal.com\/python-subprocess-pipe-with-example\/\">Python Subprocess Pipe With Example<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.digitaldesignjournal.com\/python-subprocess-interactive\/\">Python Subprocess Interactive<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.digitaldesignjournal.com\/python-subprocess-awk-with-example\/\">Python Subprocess AWK<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.digitaldesignjournal.com\/what-is-subprocess-wait-with-example\/\">What is subprocess.wait() With Example<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>I&#8217;ll provide a detailed explanation with an example of how to convert a Python list to a tuple. Step 1: &#8230; <a title=\"Python List to Tuple [Detailed Explanation]\" class=\"read-more\" href=\"https:\/\/www.digitaldesignjournal.com\/python-list-to-tuple\/\" aria-label=\"More on Python List to Tuple [Detailed Explanation]\">Read more<\/a><\/p>\n","protected":false},"author":14,"featured_media":13289,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[92],"tags":[153],"ppma_author":[155],"class_list":["post-13285","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-python","tag-python-tuple","author-aniket-singh"],"authors":[{"term_id":155,"user_id":14,"is_guest":0,"slug":"aniket-singh","display_name":"Aniket Singh","avatar_url":{"url":"https:\/\/www.digitaldesignjournal.com\/wp-content\/uploads\/2023\/09\/Aniket_Singh.png","url2x":"https:\/\/www.digitaldesignjournal.com\/wp-content\/uploads\/2023\/09\/Aniket_Singh.png"},"0":null,"1":"","2":"","3":"","4":"","5":"","6":"","7":"","8":""}],"_links":{"self":[{"href":"https:\/\/www.digitaldesignjournal.com\/wp-json\/wp\/v2\/posts\/13285","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.digitaldesignjournal.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.digitaldesignjournal.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.digitaldesignjournal.com\/wp-json\/wp\/v2\/users\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/www.digitaldesignjournal.com\/wp-json\/wp\/v2\/comments?post=13285"}],"version-history":[{"count":7,"href":"https:\/\/www.digitaldesignjournal.com\/wp-json\/wp\/v2\/posts\/13285\/revisions"}],"predecessor-version":[{"id":13297,"href":"https:\/\/www.digitaldesignjournal.com\/wp-json\/wp\/v2\/posts\/13285\/revisions\/13297"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.digitaldesignjournal.com\/wp-json\/wp\/v2\/media\/13289"}],"wp:attachment":[{"href":"https:\/\/www.digitaldesignjournal.com\/wp-json\/wp\/v2\/media?parent=13285"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.digitaldesignjournal.com\/wp-json\/wp\/v2\/categories?post=13285"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.digitaldesignjournal.com\/wp-json\/wp\/v2\/tags?post=13285"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.digitaldesignjournal.com\/wp-json\/wp\/v2\/ppma_author?post=13285"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}