{"id":7676,"date":"2022-09-09T08:41:12","date_gmt":"2022-09-09T08:41:12","guid":{"rendered":"https:\/\/flowactivo.org\/?p=7676"},"modified":"2022-09-09T08:41:12","modified_gmt":"2022-09-09T08:41:12","slug":"which-character-is-used-in-python-to-make-a-single-line-comment","status":"publish","type":"post","link":"https:\/\/flowactivo.org\/de\/which-character-is-used-in-python-to-make-a-single-line-comment\/","title":{"rendered":"which character is used in python to make a single line comment"},"content":{"rendered":"<p><img decoding=\"async\" class=\"aligncenter size-large wp-image-7677 lazyload\" data-src=\"https:\/\/flowactivo.org\/wp-content\/uploads\/2022\/09\/pexels-eduardo-dutra-2115217-compressed-1024x682.jpg\" alt=\"which character is used in python to make a single line comment\" width=\"810\" height=\"539\" data-srcset=\"https:\/\/flowactivo.org\/wp-content\/uploads\/2022\/09\/pexels-eduardo-dutra-2115217-compressed-1024x682.jpg 1024w, https:\/\/flowactivo.org\/wp-content\/uploads\/2022\/09\/pexels-eduardo-dutra-2115217-compressed-300x200.jpg 300w, https:\/\/flowactivo.org\/wp-content\/uploads\/2022\/09\/pexels-eduardo-dutra-2115217-compressed-768x512.jpg 768w, https:\/\/flowactivo.org\/wp-content\/uploads\/2022\/09\/pexels-eduardo-dutra-2115217-compressed.jpg 1280w\" data-sizes=\"(max-width: 810px) 100vw, 810px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 810px; --smush-placeholder-aspect-ratio: 810\/539;\" \/><\/p>\n<p><span style=\"font-weight: 400;\">In Python, the &#8220;#&#8221; character is used to start a single line comment. Anything on that line after the &#8220;#&#8221; will be ignored by the Python interpreter.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">This is useful for adding annotations or temporary comments to your code. It can also be helpful to comment out code that you are not currently using, but might want to use in the future.<\/span><\/p>\n<h2><span style=\"font-weight: 400;\">Using Single Line Comments<\/span><\/h2>\n<p><span style=\"font-weight: 400;\">Single line comments are easy to use in Python. Simply type a &#8220;#&#8221; at the beginning of the line you want to comment, followed by your comment text.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">For example, the following code will print &#8220;Hello, world!&#8221; to the screen:<\/span><\/p>\n<p><span style=\"font-weight: 400;\"># This is a comment<\/span><\/p>\n<p><span style=\"font-weight: 400;\">print(&#8220;Hello, world!&#8221;)<\/span><\/p>\n<p><span style=\"font-weight: 400;\">As you can see, the line starting with &#8220;# This is a comment&#8221; is ignored by the Python interpreter.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It&#8217;s also possible to comment out code that you don&#8217;t want to run. For example, let&#8217;s say you have the following code:<\/span><\/p>\n<p><span style=\"font-weight: 400;\">print(&#8220;Hello, world!&#8221;)<\/span><\/p>\n<p><span style=\"font-weight: 400;\">print(&#8220;This is some code.&#8221;)<\/span><\/p>\n<p><span style=\"font-weight: 400;\">print(&#8220;This is some more code.&#8221;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">If you wanted to comment out the middle line, you could do so like this:<\/span><\/p>\n<p><span style=\"font-weight: 400;\">print(&#8220;Hello, world!&#8221;)<\/span><\/p>\n<p><span style=\"font-weight: 400;\"># print(&#8220;This is some code.&#8221;)<\/span><\/p>\n<p><span style=\"font-weight: 400;\">print(&#8220;This is some more code.&#8221;)<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Now, when you run the code, only the first and last lines will be executed.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It&#8217;s also possible to comment out multiple lines at once. To do this, you can use a multi-line comment.<\/span><\/p>\n<h2><span style=\"font-weight: 400;\">Multi-Line Comments<\/span><\/h2>\n<p><span style=\"font-weight: 400;\">In Python, a multi-line comment is started with the &#8220;#&#8221; character, followed by a space, and then an &#8220;=&#8221; character. Everything from that point until the next &#8220;#&#8221; character will be ignored by the Python interpreter.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">For example, the following code will print &#8220;Hello, world!&#8221; to the screen:<\/span><\/p>\n<p><span style=\"font-weight: 400;\"># =<\/span><\/p>\n<p><span style=\"font-weight: 400;\">This is a comment.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It can span multiple lines.<\/span><\/p>\n<p><span style=\"font-weight: 400;\"># =<\/span><\/p>\n<p><span style=\"font-weight: 400;\">print(&#8220;Hello, world!&#8221;)<\/span><\/p>\n<p><span style=\"font-weight: 400;\">As you can see, the lines starting with &#8220;# =&#8221; and &#8220;# =&#8221; are ignored by the Python interpreter.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It&#8217;s also possible to comment out code using a multi-line comment. For example, let&#8217;s say you have the following code:<\/span><\/p>\n<p><span style=\"font-weight: 400;\">print(&#8220;Hello, world!&#8221;)<\/span><\/p>\n<p><span style=\"font-weight: 400;\">print(&#8220;This is some code.&#8221;)<\/span><\/p>\n<p><span style=\"font-weight: 400;\">print(&#8220;This is some more code.&#8221;)<\/span><\/p>\n<p><span style=\"font-weight: 400;\">If you wanted to comment out the middle two lines, you could do so like this:<\/span><\/p>\n<p><span style=\"font-weight: 400;\">print(&#8220;Hello, world!&#8221;)<\/span><\/p>\n<p><span style=\"font-weight: 400;\"># =<\/span><\/p>\n<p><span style=\"font-weight: 400;\"># print(&#8220;This is some code.&#8221;)<\/span><\/p>\n<p><span style=\"font-weight: 400;\"># print(&#8220;This is some more code.&#8221;<\/span><\/p>\n<p><span style=\"font-weight: 400;\"># =<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Now, when you run the code, only the first and last lines will be executed.<\/span><\/p>\n<h2><span style=\"font-weight: 400;\">Konklusion<\/span><\/h2>\n<p><span style=\"font-weight: 400;\">In Python, the &#8220;#&#8221; character is used to start a single line comment. Anything on that line after the &#8220;#&#8221; will be ignored by the Python interpreter. This is useful for adding annotations or temporary comments to your code.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It&#8217;s also possible to comment out code using a multi-line comment. A multi-line comment is started with the &#8220;#&#8221; character, followed by a space, and then an &#8220;=&#8221; character. Everything from that point until the next &#8220;#&#8221; character will be ignored by the Python interpreter.<\/span><\/p>","protected":false},"excerpt":{"rendered":"<p>In Python, the &#8220;#&#8221; character is used to start a single line comment. Anything on that line after the &#8220;#&#8221; will be ignored by the Python interpreter. This is useful for adding annotations or temporary comments to your code. It can also be helpful to comment out code that you are not currently using, but [&hellip;]<\/p>\n","protected":false},"author":15,"featured_media":7677,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"fifu_image_url":"","fifu_image_alt":"","footnotes":""},"categories":[45],"tags":[2558,2557,2556,2559],"class_list":["post-7676","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-technology","tag-python-single-line-comment","tag-single-line-comment-in-python","tag-single-line-comment-python","tag-which-character-is-used-in-python-to-make-a-single-line-comment"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>which character is used in python to make a single line comment - Flowactivo<\/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:\/\/flowactivo.org\/de\/which-character-is-used-in-python-to-make-a-single-line-comment\/\" \/>\n<meta property=\"og:locale\" content=\"da_DK\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"which character is used in python to make a single line comment - Flowactivo\" \/>\n<meta property=\"og:description\" content=\"In Python, the &#8220;#&#8221; character is used to start a single line comment. Anything on that line after the &#8220;#&#8221; will be ignored by the Python interpreter. This is useful for adding annotations or temporary comments to your code. It can also be helpful to comment out code that you are not currently using, but [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/flowactivo.org\/de\/which-character-is-used-in-python-to-make-a-single-line-comment\/\" \/>\n<meta property=\"og:site_name\" content=\"Flowactivo\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-09T08:41:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/flowactivo.org\/wp-content\/uploads\/2022\/09\/pexels-eduardo-dutra-2115217-compressed.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"853\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jaspreet Kaur\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@JaspreetBlogger\" \/>\n<meta name=\"twitter:label1\" content=\"Skrevet af\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jaspreet Kaur\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimeret l\u00e6setid\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutter\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/flowactivo.org\/which-character-is-used-in-python-to-make-a-single-line-comment\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/flowactivo.org\/which-character-is-used-in-python-to-make-a-single-line-comment\/\"},\"author\":{\"name\":\"Jaspreet Kaur\",\"@id\":\"https:\/\/flowactivo.org\/#\/schema\/person\/c48f796d03c6d14d36c9d254396360f2\"},\"headline\":\"which character is used in python to make a single line comment\",\"datePublished\":\"2022-09-09T08:41:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/flowactivo.org\/which-character-is-used-in-python-to-make-a-single-line-comment\/\"},\"wordCount\":479,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/flowactivo.org\/#organization\"},\"image\":{\"@id\":\"https:\/\/flowactivo.org\/which-character-is-used-in-python-to-make-a-single-line-comment\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/flowactivo.org\/wp-content\/uploads\/2022\/09\/pexels-eduardo-dutra-2115217-compressed.jpg\",\"keywords\":[\"python single line comment\",\"single line comment in python\",\"single line comment python\",\"which character is used in python to make a single line comment\"],\"articleSection\":[\"Technology\"],\"inLanguage\":\"da-DK\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/flowactivo.org\/which-character-is-used-in-python-to-make-a-single-line-comment\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/flowactivo.org\/which-character-is-used-in-python-to-make-a-single-line-comment\/\",\"url\":\"https:\/\/flowactivo.org\/which-character-is-used-in-python-to-make-a-single-line-comment\/\",\"name\":\"which character is used in python to make a single line comment - Flowactivo\",\"isPartOf\":{\"@id\":\"https:\/\/flowactivo.org\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/flowactivo.org\/which-character-is-used-in-python-to-make-a-single-line-comment\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/flowactivo.org\/which-character-is-used-in-python-to-make-a-single-line-comment\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/flowactivo.org\/wp-content\/uploads\/2022\/09\/pexels-eduardo-dutra-2115217-compressed.jpg\",\"datePublished\":\"2022-09-09T08:41:12+00:00\",\"inLanguage\":\"da-DK\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/flowactivo.org\/which-character-is-used-in-python-to-make-a-single-line-comment\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"da-DK\",\"@id\":\"https:\/\/flowactivo.org\/which-character-is-used-in-python-to-make-a-single-line-comment\/#primaryimage\",\"url\":\"https:\/\/flowactivo.org\/wp-content\/uploads\/2022\/09\/pexels-eduardo-dutra-2115217-compressed.jpg\",\"contentUrl\":\"https:\/\/flowactivo.org\/wp-content\/uploads\/2022\/09\/pexels-eduardo-dutra-2115217-compressed.jpg\",\"width\":1280,\"height\":853,\"caption\":\"which character is used in python to make a single line comment\"},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/flowactivo.org\/#website\",\"url\":\"https:\/\/flowactivo.org\/\",\"name\":\"Flowactivo\",\"description\":\"Stay Updated with the Latest Insights\",\"publisher\":{\"@id\":\"https:\/\/flowactivo.org\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/flowactivo.org\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"da-DK\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/flowactivo.org\/#organization\",\"name\":\"Flowactivo\",\"url\":\"https:\/\/flowactivo.org\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"da-DK\",\"@id\":\"https:\/\/flowactivo.org\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/flowactivo.org\/wp-content\/uploads\/2021\/01\/favicon-16x16-1.png\",\"contentUrl\":\"https:\/\/flowactivo.org\/wp-content\/uploads\/2021\/01\/favicon-16x16-1.png\",\"width\":16,\"height\":16,\"caption\":\"Flowactivo\"},\"image\":{\"@id\":\"https:\/\/flowactivo.org\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/flowactivo.org\/#\/schema\/person\/c48f796d03c6d14d36c9d254396360f2\",\"name\":\"Jaspreet Kaur\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"da-DK\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/38605499371bd5ff2f37105b7848b8cde670d44610e21f1e58fd6cc4a1e9fc2d?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/38605499371bd5ff2f37105b7848b8cde670d44610e21f1e58fd6cc4a1e9fc2d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/38605499371bd5ff2f37105b7848b8cde670d44610e21f1e58fd6cc4a1e9fc2d?s=96&d=mm&r=g\",\"caption\":\"Jaspreet Kaur\"},\"description\":\"Jaspreet is a blogger who loves to write about anything that is related to Beauty, Fashion, Business, Travel and Lifestyle Blogger by passion.\",\"sameAs\":[\"http:\/\/www.wholepost.com\",\"https:\/\/x.com\/JaspreetBlogger\"],\"url\":\"https:\/\/flowactivo.org\/de\/author\/jaspreet\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"which character is used in python to make a single line comment - Flowactivo","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:\/\/flowactivo.org\/de\/which-character-is-used-in-python-to-make-a-single-line-comment\/","og_locale":"da_DK","og_type":"article","og_title":"which character is used in python to make a single line comment - Flowactivo","og_description":"In Python, the &#8220;#&#8221; character is used to start a single line comment. Anything on that line after the &#8220;#&#8221; will be ignored by the Python interpreter. This is useful for adding annotations or temporary comments to your code. It can also be helpful to comment out code that you are not currently using, but [&hellip;]","og_url":"https:\/\/flowactivo.org\/de\/which-character-is-used-in-python-to-make-a-single-line-comment\/","og_site_name":"Flowactivo","article_published_time":"2022-09-09T08:41:12+00:00","og_image":[{"width":1280,"height":853,"url":"https:\/\/flowactivo.org\/wp-content\/uploads\/2022\/09\/pexels-eduardo-dutra-2115217-compressed.jpg","type":"image\/jpeg"}],"author":"Jaspreet Kaur","twitter_card":"summary_large_image","twitter_creator":"@JaspreetBlogger","twitter_misc":{"Skrevet af":"Jaspreet Kaur","Estimeret l\u00e6setid":"2 minutter"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/flowactivo.org\/which-character-is-used-in-python-to-make-a-single-line-comment\/#article","isPartOf":{"@id":"https:\/\/flowactivo.org\/which-character-is-used-in-python-to-make-a-single-line-comment\/"},"author":{"name":"Jaspreet Kaur","@id":"https:\/\/flowactivo.org\/#\/schema\/person\/c48f796d03c6d14d36c9d254396360f2"},"headline":"which character is used in python to make a single line comment","datePublished":"2022-09-09T08:41:12+00:00","mainEntityOfPage":{"@id":"https:\/\/flowactivo.org\/which-character-is-used-in-python-to-make-a-single-line-comment\/"},"wordCount":479,"commentCount":0,"publisher":{"@id":"https:\/\/flowactivo.org\/#organization"},"image":{"@id":"https:\/\/flowactivo.org\/which-character-is-used-in-python-to-make-a-single-line-comment\/#primaryimage"},"thumbnailUrl":"https:\/\/flowactivo.org\/wp-content\/uploads\/2022\/09\/pexels-eduardo-dutra-2115217-compressed.jpg","keywords":["python single line comment","single line comment in python","single line comment python","which character is used in python to make a single line comment"],"articleSection":["Technology"],"inLanguage":"da-DK","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/flowactivo.org\/which-character-is-used-in-python-to-make-a-single-line-comment\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/flowactivo.org\/which-character-is-used-in-python-to-make-a-single-line-comment\/","url":"https:\/\/flowactivo.org\/which-character-is-used-in-python-to-make-a-single-line-comment\/","name":"which character is used in python to make a single line comment - Flowactivo","isPartOf":{"@id":"https:\/\/flowactivo.org\/#website"},"primaryImageOfPage":{"@id":"https:\/\/flowactivo.org\/which-character-is-used-in-python-to-make-a-single-line-comment\/#primaryimage"},"image":{"@id":"https:\/\/flowactivo.org\/which-character-is-used-in-python-to-make-a-single-line-comment\/#primaryimage"},"thumbnailUrl":"https:\/\/flowactivo.org\/wp-content\/uploads\/2022\/09\/pexels-eduardo-dutra-2115217-compressed.jpg","datePublished":"2022-09-09T08:41:12+00:00","inLanguage":"da-DK","potentialAction":[{"@type":"ReadAction","target":["https:\/\/flowactivo.org\/which-character-is-used-in-python-to-make-a-single-line-comment\/"]}]},{"@type":"ImageObject","inLanguage":"da-DK","@id":"https:\/\/flowactivo.org\/which-character-is-used-in-python-to-make-a-single-line-comment\/#primaryimage","url":"https:\/\/flowactivo.org\/wp-content\/uploads\/2022\/09\/pexels-eduardo-dutra-2115217-compressed.jpg","contentUrl":"https:\/\/flowactivo.org\/wp-content\/uploads\/2022\/09\/pexels-eduardo-dutra-2115217-compressed.jpg","width":1280,"height":853,"caption":"which character is used in python to make a single line comment"},{"@type":"WebSite","@id":"https:\/\/flowactivo.org\/#website","url":"https:\/\/flowactivo.org\/","name":"Flowactivo","description":"Hold dig opdateret med de nyeste indsigter","publisher":{"@id":"https:\/\/flowactivo.org\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/flowactivo.org\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"da-DK"},{"@type":"Organization","@id":"https:\/\/flowactivo.org\/#organization","name":"Flowactivo","url":"https:\/\/flowactivo.org\/","logo":{"@type":"ImageObject","inLanguage":"da-DK","@id":"https:\/\/flowactivo.org\/#\/schema\/logo\/image\/","url":"https:\/\/flowactivo.org\/wp-content\/uploads\/2021\/01\/favicon-16x16-1.png","contentUrl":"https:\/\/flowactivo.org\/wp-content\/uploads\/2021\/01\/favicon-16x16-1.png","width":16,"height":16,"caption":"Flowactivo"},"image":{"@id":"https:\/\/flowactivo.org\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/flowactivo.org\/#\/schema\/person\/c48f796d03c6d14d36c9d254396360f2","name":"Jaspreet Kaur","image":{"@type":"ImageObject","inLanguage":"da-DK","@id":"https:\/\/secure.gravatar.com\/avatar\/38605499371bd5ff2f37105b7848b8cde670d44610e21f1e58fd6cc4a1e9fc2d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/38605499371bd5ff2f37105b7848b8cde670d44610e21f1e58fd6cc4a1e9fc2d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/38605499371bd5ff2f37105b7848b8cde670d44610e21f1e58fd6cc4a1e9fc2d?s=96&d=mm&r=g","caption":"Jaspreet Kaur"},"description":"Jaspreet is a blogger who loves to write about anything that is related to Beauty, Fashion, Business, Travel and Lifestyle Blogger by passion.","sameAs":["http:\/\/www.wholepost.com","https:\/\/x.com\/JaspreetBlogger"],"url":"https:\/\/flowactivo.org\/de\/author\/jaspreet\/"}]}},"_links":{"self":[{"href":"https:\/\/flowactivo.org\/de\/wp-json\/wp\/v2\/posts\/7676","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/flowactivo.org\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/flowactivo.org\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/flowactivo.org\/de\/wp-json\/wp\/v2\/users\/15"}],"replies":[{"embeddable":true,"href":"https:\/\/flowactivo.org\/de\/wp-json\/wp\/v2\/comments?post=7676"}],"version-history":[{"count":2,"href":"https:\/\/flowactivo.org\/de\/wp-json\/wp\/v2\/posts\/7676\/revisions"}],"predecessor-version":[{"id":7679,"href":"https:\/\/flowactivo.org\/de\/wp-json\/wp\/v2\/posts\/7676\/revisions\/7679"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/flowactivo.org\/de\/wp-json\/wp\/v2\/media\/7677"}],"wp:attachment":[{"href":"https:\/\/flowactivo.org\/de\/wp-json\/wp\/v2\/media?parent=7676"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/flowactivo.org\/de\/wp-json\/wp\/v2\/categories?post=7676"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/flowactivo.org\/de\/wp-json\/wp\/v2\/tags?post=7676"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}