{"id":8488,"date":"2022-09-13T22:14:24","date_gmt":"2022-09-13T16:44:24","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/"},"modified":"2022-09-13T22:14:24","modified_gmt":"2022-09-13T16:44:24","slug":"solved-sorting-multiple-rows-as-a-single-column-using-python","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/","title":{"rendered":"[Solved] Sorting multiple rows as a single column using Python."},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-44735203\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"44735203\" data-parentid=\"44735024\" data-score=\"0\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<pre><code>import re\nimport csv\n\nwith open('data.txt') as f:\n    data = []\n    for line in f:\n        items = re.split('[\\s]+', line.strip())\n        if not line.strip().startswith('K1'):\n            data.append([])\n            data[-1].extend([items[0]] + items[2:])\n\n        else:\n            data[-1].extend(items[1:])\n\ndata = list(map(list, zip(*data)))\n\nwith open('data.csv', 'w') as f:   \n    writer = csv.writer(f)\n    writer.writerows(data)\n<\/code><\/pre>\n<hr>\n<p>And your csv data looks like this:<\/p>\n<pre><code>-29-,-30-,-31-,-32-,-33-,-34-,-35-,-36-,-37-\n4.2735E+05,9.2186E+05,9.4197E+05,9.4089E+05,9.4889E+05,9.5109E+05,9.6455E+05,9.4382E+05,-4.8051E+06\n4.3904E+05,9.2199E+05,9.4200E+05,9.4070E+05,9.4904E+05,9.5097E+05,9.6459E+05,9.4314E+05,-2.1630E+07\n4.5718E+05,9.2134E+05,9.4127E+05,9.4016E+05,9.4849E+05,9.5042E+05,9.6377E+05,9.4290E+05,-8.8415E+07\n4.8817E+05,9.2164E+05,9.4106E+05,9.4026E+05,9.4857E+05,9.5052E+05,9.6384E+05,9.4317E+05,-2.3794E+08\n5.4312E+05,9.2075E+05,9.4132E+05,9.4015E+05,9.4842E+05,9.5047E+05,9.6355E+05,9.4365E+05,-5.2223E+08\n7.3055E+05,9.1836E+05,9.4327E+05,9.3932E+05,9.4797E+05,9.4989E+05,9.6521E+05,9.4070E+05,-1.7084E+09\n1.1069E+06,9.1954E+05,9.4194E+05,9.3955E+05,9.4799E+05,9.5001E+05,9.6406E+05,9.4213E+05,-4.2516E+09\n1.6420E+06,9.1928E+05,9.4225E+05,9.3942E+05,9.4809E+05,9.4991E+05,9.6479E+05,9.4145E+05,-8.0371E+09\n2.4611E+06,3.0813E+06,3.0970E+06,3.0909E+06,3.0905E+06,3.0875E+06,3.0927E+06,3.0611E+06,-1.4024E+10\n3.4179E+06,3.9755E+06,3.9942E+06,4.0011E+06,4.0104E+06,4.0237E+06,4.0407E+06,4.0363E+06,-2.1404E+10\n4.4951E+06,2.3131E+06,4.8227E+06,2.3339E+06,4.8430E+06,2.3439E+06,4.8796E+06,2.3368E+06,-3.0006E+10\n5.6975E+06,2.5546E+06,5.5341E+06,2.5748E+06,5.5598E+06,2.5840E+06,5.6050E+06,2.5769E+06,-3.9706E+10\n6.9872E+06,2.7332E+06,6.1198E+06,2.7522E+06,6.1519E+06,2.7604E+06,6.2076E+06,2.7535E+06,-5.0364E+10\n8.3390E+06,2.8727E+06,6.6016E+06,2.8903E+06,6.6411E+06,2.8977E+06,6.7089E+06,2.8914E+06,-6.1872E+10\n9.7442E+06,2.9952E+06,7.0045E+06,3.0113E+06,7.0524E+06,3.0186E+06,7.1343E+06,3.0145E+06,-7.4177E+10\n1.1191E+07,3.0875E+06,7.3187E+06,3.1016E+06,7.3755E+06,3.1094E+06,7.4727E+06,3.1088E+06,-8.7199E+10\n1.2660E+07,3.1166E+06,7.5190E+06,3.1288E+06,7.5859E+06,3.1385E+06,7.7009E+06,3.1442E+06,-1.0083E+11\n1.4145E+07,3.1092E+06,7.6389E+06,3.1199E+06,7.7166E+06,3.1320E+06,7.8500E+06,3.1438E+06,-1.1505E+11\n1.5650E+07,3.0592E+06,7.6793E+06,3.0689E+06,7.7689E+06,3.0848E+06,7.9231E+06,3.1050E+06,-1.2990E+11\n1.7172E+07,2.9703E+06,7.6466E+06,2.9790E+06,7.7489E+06,3.0000E+06,7.9256E+06,3.0301E+06,-1.4541E+11\n1.8700E+07,2.8246E+06,7.5266E+06,2.8324E+06,7.6431E+06,2.8600E+06,7.8451E+06,2.9032E+06,-1.6152E+11\n2.0219E+07,2.6487E+06,7.3461E+06,2.6560E+06,7.4778E+06,2.6914E+06,7.7070E+06,2.7489E+06,-1.7815E+11\n2.1725E+07,2.4648E+06,7.1328E+06,2.4711E+06,7.2790E+06,2.5138E+06,7.5352E+06,2.5853E+06,-1.9528E+11\n2.3218E+07,2.2807E+06,6.8899E+06,2.2859E+06,7.0506E+06,2.3357E+06,7.3340E+06,2.4205E+06,-2.1295E+11\n2.4696E+07,2.0752E+06,6.6004E+06,2.0793E+06,6.7754E+06,2.1366E+06,7.0864E+06,2.2355E+06,-2.3114E+11\n2.6156E+07,1.7324E+06,6.2507E+06,1.7387E+06,6.4401E+06,1.8181E+06,6.7807E+06,1.9550E+06,-2.4986E+11\n2.7587E+07,1.3371E+06,5.8471E+06,1.3434E+06,6.0493E+06,1.4438E+06,6.4190E+06,1.6183E+06,-2.6904E+11\n2.8989E+07,8.6208E+05,5.3625E+06,8.6692E+05,5.5774E+06,9.8956E+05,5.9785E+06,1.2061E+06,-2.8870E+11\n3.0361E+07,3.1255E+05,4.8011E+06,3.1210E+05,5.0257E+06,4.5490E+05,5.4571E+06,7.1347E+05,-3.0891E+11\n3.1718E+07,4.3936E+04,4.1676E+06,4.0843E+04,4.3994E+06,1.9655E+05,4.8602E+06,4.8245E+05,-3.2966E+11\n3.3164E+07,-3.2260E+05,3.4331E+06,-3.2145E+05,3.6721E+06,-1.5399E+05,4.1565E+06,1.5065E+05,-3.5090E+11\n3.4862E+07,-6.0556E+05,2.9632E+06,-6.2328E+05,3.1921E+06,-4.5865E+05,3.6840E+06,-1.4123E+05,-3.7072E+11\n<\/code><\/pre>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">1<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved Sorting multiple rows as a single column using Python. <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] import re import csv with open(&#8216;data.txt&#8217;) as f: data = [] for line in f: items = re.split(&#8216;[\\s]+&#8217;, line.strip()) if not line.strip().startswith(&#8216;K1&#8217;): data.append([]) data[-1].extend([items[0]] + items[2:]) else: data[-1].extend(items[1:]) data = list(map(list, zip(*data))) with open(&#8216;data.csv&#8217;, &#8216;w&#8217;) as f: writer = csv.writer(f) writer.writerows(data) And your csv data looks like this: -29-,-30-,-31-,-32-,-33-,-34-,-35-,-36-,-37- 4.2735E+05,9.2186E+05,9.4197E+05,9.4089E+05,9.4889E+05,9.5109E+05,9.6455E+05,9.4382E+05,-4.8051E+06 4.3904E+05,9.2199E+05,9.4200E+05,9.4070E+05,9.4904E+05,9.5097E+05,9.6459E+05,9.4314E+05,-2.1630E+07 4.5718E+05,9.2134E+05,9.4127E+05,9.4016E+05,9.4849E+05,9.5042E+05,9.6377E+05,9.4290E+05,-8.8415E+07 4.8817E+05,9.2164E+05,9.4106E+05,9.4026E+05,9.4857E+05,9.5052E+05,9.6384E+05,9.4317E+05,-2.3794E+08 5.4312E+05,9.2075E+05,9.4132E+05,9.4015E+05,9.4842E+05,9.5047E+05,9.6355E+05,9.4365E+05,-5.2223E+08 &#8230; <a title=\"[Solved] Sorting multiple rows as a single column using Python.\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/\" aria-label=\"More on [Solved] Sorting multiple rows as a single column using Python.\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[349],"class_list":["post-8488","post","type-post","status-publish","format-standard","hentry","category-solved","tag-python"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] Sorting multiple rows as a single column using Python. - JassWeb<\/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:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] Sorting multiple rows as a single column using Python. - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] import re import csv with open(&#039;data.txt&#039;) as f: data = [] for line in f: items = re.split(&#039;[s]+&#039;, line.strip()) if not line.strip().startswith(&#039;K1&#039;): data.append([]) data[-1].extend([items[0]] + items[2:]) else: data[-1].extend(items[1:]) data = list(map(list, zip(*data))) with open(&#039;data.csv&#039;, &#039;w&#039;) as f: writer = csv.writer(f) writer.writerows(data) And your csv data looks like this: -29-,-30-,-31-,-32-,-33-,-34-,-35-,-36-,-37- 4.2735E+05,9.2186E+05,9.4197E+05,9.4089E+05,9.4889E+05,9.5109E+05,9.6455E+05,9.4382E+05,-4.8051E+06 4.3904E+05,9.2199E+05,9.4200E+05,9.4070E+05,9.4904E+05,9.5097E+05,9.6459E+05,9.4314E+05,-2.1630E+07 4.5718E+05,9.2134E+05,9.4127E+05,9.4016E+05,9.4849E+05,9.5042E+05,9.6377E+05,9.4290E+05,-8.8415E+07 4.8817E+05,9.2164E+05,9.4106E+05,9.4026E+05,9.4857E+05,9.5052E+05,9.6384E+05,9.4317E+05,-2.3794E+08 5.4312E+05,9.2075E+05,9.4132E+05,9.4015E+05,9.4842E+05,9.5047E+05,9.6355E+05,9.4365E+05,-5.2223E+08 ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-13T16:44:24+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] Sorting multiple rows as a single column using Python.\",\"datePublished\":\"2022-09-13T16:44:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/\"},\"wordCount\":29,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"python\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/\",\"name\":\"[Solved] Sorting multiple rows as a single column using Python. - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2022-09-13T16:44:24+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] Sorting multiple rows as a single column using Python.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] Sorting multiple rows as a single column using Python. - JassWeb","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:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] Sorting multiple rows as a single column using Python. - JassWeb","og_description":"[ad_1] import re import csv with open('data.txt') as f: data = [] for line in f: items = re.split('[s]+', line.strip()) if not line.strip().startswith('K1'): data.append([]) data[-1].extend([items[0]] + items[2:]) else: data[-1].extend(items[1:]) data = list(map(list, zip(*data))) with open('data.csv', 'w') as f: writer = csv.writer(f) writer.writerows(data) And your csv data looks like this: -29-,-30-,-31-,-32-,-33-,-34-,-35-,-36-,-37- 4.2735E+05,9.2186E+05,9.4197E+05,9.4089E+05,9.4889E+05,9.5109E+05,9.6455E+05,9.4382E+05,-4.8051E+06 4.3904E+05,9.2199E+05,9.4200E+05,9.4070E+05,9.4904E+05,9.5097E+05,9.6459E+05,9.4314E+05,-2.1630E+07 4.5718E+05,9.2134E+05,9.4127E+05,9.4016E+05,9.4849E+05,9.5042E+05,9.6377E+05,9.4290E+05,-8.8415E+07 4.8817E+05,9.2164E+05,9.4106E+05,9.4026E+05,9.4857E+05,9.5052E+05,9.6384E+05,9.4317E+05,-2.3794E+08 5.4312E+05,9.2075E+05,9.4132E+05,9.4015E+05,9.4842E+05,9.5047E+05,9.6355E+05,9.4365E+05,-5.2223E+08 ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/","og_site_name":"JassWeb","article_published_time":"2022-09-13T16:44:24+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] Sorting multiple rows as a single column using Python.","datePublished":"2022-09-13T16:44:24+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/"},"wordCount":29,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["python"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/","url":"https:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/","name":"[Solved] Sorting multiple rows as a single column using Python. - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-09-13T16:44:24+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-sorting-multiple-rows-as-a-single-column-using-python\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] Sorting multiple rows as a single column using Python."}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/8488","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=8488"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/8488\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=8488"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=8488"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=8488"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}