{"id":17383,"date":"2021-10-16T15:47:33","date_gmt":"2021-10-16T10:17:33","guid":{"rendered":"http:\/\/onlineappsdba.com\/?p=17383"},"modified":"2021-10-16T17:24:53","modified_gmt":"2021-10-16T11:54:53","slug":"functions","status":"publish","type":"post","link":"https:\/\/onlineappsdba.com\/index.php\/2021\/10\/16\/functions\/","title":{"rendered":"Python Functions: Overview, Types, Arguments, Doctstirng"},"content":{"rendered":"<p><span class=\"c-emoji c-emoji__medium c-emoji--inline\" data-qa=\"emoji\" data-sk=\"tooltip_parent\"><img decoding=\"async\" src=\"https:\/\/a.slack-edge.com\/production-standard-emoji-assets\/13.0\/google-medium\/2714-fe0f.png\" alt=\":heavy_check_mark:\" aria-label=\"heavy check mark emoji\" data-stringify-type=\"emoji\" data-stringify-emoji=\":heavy_check_mark:\" \/><\/span>\u00a0Python Functions is a block of related statements<span class=\"c-emoji c-emoji__medium c-emoji--inline\" data-qa=\"emoji\" data-sk=\"tooltip_parent\"><img decoding=\"async\" src=\"https:\/\/a.slack-edge.com\/production-standard-emoji-assets\/13.0\/google-medium\/1f9ee.png\" alt=\":abacus:\" aria-label=\"abacus emoji\" data-stringify-type=\"emoji\" data-stringify-emoji=\":abacus:\" \/><\/span>\u00a0designed to perform a computational, logical, or evaluative task.<\/p>\n<p><span class=\"c-emoji c-emoji__medium c-emoji--inline\" data-qa=\"emoji\" data-sk=\"tooltip_parent\"><img decoding=\"async\" src=\"https:\/\/a.slack-edge.com\/production-standard-emoji-assets\/13.0\/google-medium\/2714-fe0f.png\" alt=\":heavy_check_mark:\" aria-label=\"heavy check mark emoji\" data-stringify-type=\"emoji\" data-stringify-emoji=\":heavy_check_mark:\" \/><\/span>\u00a0The idea<span class=\"c-emoji c-emoji__medium c-emoji--inline\" data-qa=\"emoji\" data-sk=\"tooltip_parent\"><img decoding=\"async\" src=\"https:\/\/a.slack-edge.com\/production-standard-emoji-assets\/13.0\/google-medium\/1f914.png\" alt=\":thinking_face:\" aria-label=\"thinking face emoji\" data-stringify-type=\"emoji\" data-stringify-emoji=\":thinking_face:\" \/><\/span>\u00a0 is to put some commonly or repeatedly done tasks together and make a function so that instead of writing the same code multiple times for different inputs, function calls can be done to reuse the code contained in it numerous times.<\/p>\n<p><span class=\"c-emoji c-emoji__medium c-emoji--inline\" data-qa=\"emoji\" data-sk=\"tooltip_parent\"><img decoding=\"async\" src=\"https:\/\/a.slack-edge.com\/production-standard-emoji-assets\/13.0\/google-medium\/2714-fe0f.png\" alt=\":heavy_check_mark:\" aria-label=\"heavy check mark emoji\" data-stringify-type=\"emoji\" data-stringify-emoji=\":heavy_check_mark:\" \/><\/span>\u00a0The function is first defined using a def keyword and then we can make the function call<span class=\"c-emoji c-emoji__medium c-emoji--inline\" data-qa=\"emoji\" data-sk=\"tooltip_parent\"><img decoding=\"async\" src=\"https:\/\/a.slack-edge.com\/production-standard-emoji-assets\/13.0\/google-medium\/1f4e2.png\" alt=\":loudspeaker:\" aria-label=\"loudspeaker emoji\" data-stringify-type=\"emoji\" data-stringify-emoji=\":loudspeaker:\" \/><\/span>\u00a0by using the name of the function followed by parenthesis containing parameters of that particular function.<\/p>\n<p><span class=\"c-emoji c-emoji__medium c-emoji--inline\" data-qa=\"emoji\" data-sk=\"tooltip_parent\"><img decoding=\"async\" src=\"https:\/\/a.slack-edge.com\/production-standard-emoji-assets\/13.0\/google-medium\/2714-fe0f.png\" alt=\":heavy_check_mark:\" aria-label=\"heavy check mark emoji\" data-stringify-type=\"emoji\" data-stringify-emoji=\":heavy_check_mark:\" \/><\/span>\u00a0Python Arguments: The arguments are types of information that can be passed into the function. They are specified in the parentheses.<\/p>\n<p>Read<span class=\"c-emoji c-emoji__medium c-emoji--inline\" data-qa=\"emoji\" data-sk=\"tooltip_parent\"><img decoding=\"async\" src=\"https:\/\/a.slack-edge.com\/production-standard-emoji-assets\/13.0\/google-medium\/1f4da.png\" alt=\":books:\" aria-label=\"books emoji\" data-stringify-type=\"emoji\" data-stringify-emoji=\":books:\" \/><\/span> more about Python Function, basic syntax, Function Arguments, etc in my blog at <a href=\"https:\/\/k21academy.com\/datascience\/python\/functions\/?utm_source=onlineappsdba&amp;utm_medium=referral&amp;utm_campaign=python17_october21\" target=\"_blank\" rel=\"noopener noreferrer\"><em><strong>https:\/\/k21academy.com\/python17<\/strong><\/em><\/a>\u00a0 which covers the following:<span class=\"c-emoji c-emoji__medium c-emoji--inline\" data-qa=\"emoji\" data-sk=\"tooltip_parent\"><img decoding=\"async\" src=\"https:\/\/a.slack-edge.com\/production-standard-emoji-assets\/13.0\/google-medium\/1f50e.png\" alt=\":mag_right:\" aria-label=\"mag right emoji\" data-stringify-type=\"emoji\" data-stringify-emoji=\":mag_right:\" \/><\/span>\u00a0Python Functions Overview<br \/>\n<span class=\"c-emoji c-emoji__medium c-emoji--inline\" data-qa=\"emoji\" data-sk=\"tooltip_parent\"><img decoding=\"async\" src=\"https:\/\/a.slack-edge.com\/production-standard-emoji-assets\/13.0\/google-medium\/1f50e.png\" alt=\":mag_right:\" aria-label=\"mag right emoji\" data-stringify-type=\"emoji\" data-stringify-emoji=\":mag_right:\" \/><\/span>\u00a0Why Functions are needed?<br \/>\n<span class=\"c-emoji c-emoji__medium c-emoji--inline\" data-qa=\"emoji\" data-sk=\"tooltip_parent\"><img decoding=\"async\" src=\"https:\/\/a.slack-edge.com\/production-standard-emoji-assets\/13.0\/google-medium\/1f50e.png\" alt=\":mag_right:\" aria-label=\"mag right emoji\" data-stringify-type=\"emoji\" data-stringify-emoji=\":mag_right:\" \/><\/span>\u00a0Basic Syntax<br \/>\n<span class=\"c-emoji c-emoji__medium c-emoji--inline\" data-qa=\"emoji\" data-sk=\"tooltip_parent\"><img decoding=\"async\" src=\"https:\/\/a.slack-edge.com\/production-standard-emoji-assets\/13.0\/google-medium\/1f50e.png\" alt=\":mag_right:\" aria-label=\"mag right emoji\" data-stringify-type=\"emoji\" data-stringify-emoji=\":mag_right:\" \/><\/span>\u00a0Python Function Arguments<br \/>\n<span class=\"c-emoji c-emoji__medium c-emoji--inline\" data-qa=\"emoji\" data-sk=\"tooltip_parent\"><img decoding=\"async\" src=\"https:\/\/a.slack-edge.com\/production-standard-emoji-assets\/13.0\/google-medium\/1f50e.png\" alt=\":mag_right:\" aria-label=\"mag right emoji\" data-stringify-type=\"emoji\" data-stringify-emoji=\":mag_right:\" \/><\/span>\u00a0Docstring<br \/>\n<span class=\"c-emoji c-emoji__medium c-emoji--inline\" data-qa=\"emoji\" data-sk=\"tooltip_parent\"><img decoding=\"async\" src=\"https:\/\/a.slack-edge.com\/production-standard-emoji-assets\/13.0\/google-medium\/1f50e.png\" alt=\":mag_right:\" aria-label=\"mag right emoji\" data-stringify-type=\"emoji\" data-stringify-emoji=\":mag_right:\" \/><\/span>\u00a0Return Statement<br \/>\n<span class=\"c-emoji c-emoji__medium c-emoji--inline\" data-qa=\"emoji\" data-sk=\"tooltip_parent\"><img decoding=\"async\" src=\"https:\/\/a.slack-edge.com\/production-standard-emoji-assets\/13.0\/google-medium\/1f50e.png\" alt=\":mag_right:\" aria-label=\"mag right emoji\" data-stringify-type=\"emoji\" data-stringify-emoji=\":mag_right:\" \/><\/span>\u00a0Anonymous Function<span class=\"c-emoji c-emoji__medium c-emoji--inline\" data-qa=\"emoji\" data-sk=\"tooltip_parent\"><img decoding=\"async\" src=\"https:\/\/a.slack-edge.com\/production-standard-emoji-assets\/13.0\/google-medium\/1f4ab.png\" alt=\":dizzy:\" aria-label=\"dizzy emoji\" data-stringify-type=\"emoji\" data-stringify-emoji=\":dizzy:\" \/><\/span>\u00a0Get started with your Python Journey<\/p>\n<p>Join our\u00a0<a href=\"https:\/\/k21academy.com\/python-certification-free-class?utm_source=onlineappsdba&amp;utm_medium=referral&amp;utm_campaign=python02_october21\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Free Class<\/strong><\/a>\u00a0to know more about it.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/k21academy.com\/wp-content\/uploads\/2021\/10\/CU_FC_Pythongif.gif\" alt=\"Free Class Python\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u00a0Python Functions is a block of related statements\u00a0designed to perform a computational, logical, or evaluative task. \u00a0The idea\u00a0 is to [&hellip;]<\/p>\n","protected":false},"author":115,"featured_media":17384,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[555,574],"tags":[],"class_list":["post-17383","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-data-science","category-python"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Introduction To Python Functions, Arguments, Docstring With Example<\/title>\n<meta name=\"description\" content=\"In this blog, we are going to cover a brief overview of Python Functions, the syntax to create and call a function, types of arguments, docstring, and more.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/onlineappsdba.com\/index.php\/2021\/10\/16\/functions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Introduction To Python Functions, Arguments, Docstring With Example\" \/>\n<meta property=\"og:description\" content=\"In this blog, we are going to cover a brief overview of Python Functions, the syntax to create and call a function, types of arguments, docstring, and more.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/onlineappsdba.com\/index.php\/2021\/10\/16\/functions\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-10-16T10:17:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-10-16T11:54:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2021\/10\/PythonFunctions_BlogImage.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1125\" \/>\n\t<meta property=\"og:image:height\" content=\"629\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Masroof Ahmad\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Masroof Ahmad\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2021\/10\/16\/functions\/\",\"url\":\"https:\/\/onlineappsdba.com\/index.php\/2021\/10\/16\/functions\/\",\"name\":\"Introduction To Python Functions, Arguments, Docstring With Example\",\"isPartOf\":{\"@id\":\"https:\/\/onlineappsdba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2021\/10\/16\/functions\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2021\/10\/16\/functions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2021\/10\/PythonFunctions_BlogImage.png\",\"datePublished\":\"2021-10-16T10:17:33+00:00\",\"dateModified\":\"2021-10-16T11:54:53+00:00\",\"author\":{\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb\"},\"description\":\"In this blog, we are going to cover a brief overview of Python Functions, the syntax to create and call a function, types of arguments, docstring, and more.\",\"breadcrumb\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2021\/10\/16\/functions\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/onlineappsdba.com\/index.php\/2021\/10\/16\/functions\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2021\/10\/16\/functions\/#primaryimage\",\"url\":\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2021\/10\/PythonFunctions_BlogImage.png\",\"contentUrl\":\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2021\/10\/PythonFunctions_BlogImage.png\",\"width\":1125,\"height\":629},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2021\/10\/16\/functions\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/onlineappsdba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python Functions: Overview, Types, Arguments, Doctstirng\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/onlineappsdba.com\/#website\",\"url\":\"https:\/\/onlineappsdba.com\/\",\"name\":\"\",\"description\":\"Oracle Implementation &amp; Training Experts\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/onlineappsdba.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb\",\"name\":\"Masroof Ahmad\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g\",\"caption\":\"Masroof Ahmad\"},\"url\":\"https:\/\/onlineappsdba.com\/index.php\/author\/masroof\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Introduction To Python Functions, Arguments, Docstring With Example","description":"In this blog, we are going to cover a brief overview of Python Functions, the syntax to create and call a function, types of arguments, docstring, and more.","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:\/\/onlineappsdba.com\/index.php\/2021\/10\/16\/functions\/","og_locale":"en_US","og_type":"article","og_title":"Introduction To Python Functions, Arguments, Docstring With Example","og_description":"In this blog, we are going to cover a brief overview of Python Functions, the syntax to create and call a function, types of arguments, docstring, and more.","og_url":"https:\/\/onlineappsdba.com\/index.php\/2021\/10\/16\/functions\/","article_published_time":"2021-10-16T10:17:33+00:00","article_modified_time":"2021-10-16T11:54:53+00:00","og_image":[{"width":1125,"height":629,"url":"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2021\/10\/PythonFunctions_BlogImage.png","type":"image\/png"}],"author":"Masroof Ahmad","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Masroof Ahmad","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/onlineappsdba.com\/index.php\/2021\/10\/16\/functions\/","url":"https:\/\/onlineappsdba.com\/index.php\/2021\/10\/16\/functions\/","name":"Introduction To Python Functions, Arguments, Docstring With Example","isPartOf":{"@id":"https:\/\/onlineappsdba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2021\/10\/16\/functions\/#primaryimage"},"image":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2021\/10\/16\/functions\/#primaryimage"},"thumbnailUrl":"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2021\/10\/PythonFunctions_BlogImage.png","datePublished":"2021-10-16T10:17:33+00:00","dateModified":"2021-10-16T11:54:53+00:00","author":{"@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb"},"description":"In this blog, we are going to cover a brief overview of Python Functions, the syntax to create and call a function, types of arguments, docstring, and more.","breadcrumb":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2021\/10\/16\/functions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/onlineappsdba.com\/index.php\/2021\/10\/16\/functions\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/onlineappsdba.com\/index.php\/2021\/10\/16\/functions\/#primaryimage","url":"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2021\/10\/PythonFunctions_BlogImage.png","contentUrl":"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2021\/10\/PythonFunctions_BlogImage.png","width":1125,"height":629},{"@type":"BreadcrumbList","@id":"https:\/\/onlineappsdba.com\/index.php\/2021\/10\/16\/functions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/onlineappsdba.com\/"},{"@type":"ListItem","position":2,"name":"Python Functions: Overview, Types, Arguments, Doctstirng"}]},{"@type":"WebSite","@id":"https:\/\/onlineappsdba.com\/#website","url":"https:\/\/onlineappsdba.com\/","name":"","description":"Oracle Implementation &amp; Training Experts","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/onlineappsdba.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb","name":"Masroof Ahmad","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g","caption":"Masroof Ahmad"},"url":"https:\/\/onlineappsdba.com\/index.php\/author\/masroof\/"}]}},"_links":{"self":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts\/17383","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/users\/115"}],"replies":[{"embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/comments?post=17383"}],"version-history":[{"count":0,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts\/17383\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/media\/17384"}],"wp:attachment":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/media?parent=17383"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/categories?post=17383"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/tags?post=17383"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}