{"id":71495,"date":"2022-07-18T02:58:47","date_gmt":"2022-07-18T02:58:47","guid":{"rendered":"https:\/\/itsourcecode.com\/?p=71495"},"modified":"2023-10-25T09:15:55","modified_gmt":"2023-10-25T09:15:55","slug":"python-built-in-functions-with-examples","status":"publish","type":"post","link":"https:\/\/itsourcecode.com\/python-tutorial\/python-built-in-functions-with-examples\/","title":{"rendered":"Complete Python Built-in Functions with Examples"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\" id=\"h-what-are-built-in-functions-in-python\"><strong>What are built-in functions in Python?<\/strong><\/h2>\n\n\n\n<p><strong>Built-in functions are part of the Python programming language itself a<\/strong>nd provide essential functionality for various operations.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>In Python, there are several built-in functions that are available for immediate use without the need for importing any external libraries.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-many-built-in-functions-are-in-python\"><strong>How many built-in functions are in Python?<\/strong><\/h2>\n\n\n\n<p><strong>In the latest version of Python 3.10, there are 71 built-in functions in the standard library.<\/strong><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>They&#8217;re used by programmers to perform common tasks such as mathematical calculations, data processing, string manipulation, file handling, etc.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-list-of-all-built-in-functions-in-python\"><strong>List of All Built-in Functions in Python<\/strong><\/h2>\n\n\n\n<p>Python functions are part of the standard library and are included by default when installing Python.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>Let&#8217;s take a look at the list of Python built-in functions with examples.<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th class=\"has-text-align-center\" data-align=\"center\">No.<\/th><th class=\"has-text-align-center\" data-align=\"center\">Function<\/th><th>Description<\/th><\/tr><\/thead><tbody><tr><td class=\"has-text-align-center\" data-align=\"center\">1<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong><a href=\"https:\/\/itsourcecode.com\/python-tutorial\/abs-function-in-python\/\">abs()<\/a><\/strong><\/td><td>This function returns the absolute value of the number. Arguments may be integers, floating-point numbers, or objects implementing <strong><code>__abs__()<\/code><\/strong>.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">2<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong><a href=\"https:\/\/itsourcecode.com\/python-tutorial\/aiter-function-in-python\/\">aiter()<\/a><\/strong><\/td><td>This function takes an asynchronous iterator and returns a synchronized iterable for use with that iterator.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">3<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>all()<\/strong><\/td><td>Returns True if each item in an iterable object is true and there are no false elements.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">4<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>any()<\/strong><\/td><td>Returns If even one of the items in an iterable object is true, then true is returned.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">5<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>anext()<\/strong><\/td><td>Return the next item in the asynchronous iterator that was given to you, or the default if the iterator does not contain any items.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">6<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>ascii()<\/strong><\/td><td>The readable version of an object is the one that is returned by this method. This command inserts an escape character in front of any characters that aren&#8217;t ASCII.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">7<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>bin()<\/strong><\/td><td>Provides a number in its binary representation and returns it.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">8<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>bool()<\/strong><\/td><td>This function returns either the true or false value of the object.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">9<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>breakpoint()<\/strong><\/td><td>When you use this function, the debugger will take you to the location of the call.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">10<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>bytearray()<\/strong><\/td><td>This function returns an array containing byte values.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">11<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>bytes()<\/strong><\/td><td>It returns an object of type bytes.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">12<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>callable()<\/strong><\/td><td>Returns If the object that was supplied can be called, then this value is True; otherwise, it will return False.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">13<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>chr()<\/strong><\/td><td>This function takes a Unicode code as an argument and returns a character that corresponds to that code.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">14<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>classmethod()<\/strong><\/td><td>Performs the transformation of a method into a class method.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">15<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>compile()<\/strong><\/td><td>Returns the source you specify as an object that is prepared to be carried out in the execution.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">16<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>complex()<\/strong><\/td><td>Provides a number with a complex value as its return value.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">17<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>delattr()<\/strong><\/td><td>Deletes the method or property specified from the object specified if it was specified.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">18<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>dict()<\/strong><\/td><td>This function returns a dictionary (Array)<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">19<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>dir()<\/strong><\/td><td>This function will return a list of all the properties and methods that are associated with the object.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">20<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>divmod()<\/strong><\/td><td>When argument1 is divided by argument2, this function returns both the quotient and the remainder.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">21<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>enumerate()<\/strong><\/td><td>This function takes a collection and returns an enumerated object from the collection, similar to a tuple.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">22<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>eval()<\/strong><\/td><td>Performs an evaluation and then executes an expression.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">23<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>exec()<\/strong><\/td><td>It executes the code that you specified (or object)<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">24<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>filter()<\/strong><\/td><td>To remove items from an iterable object, use a filter function.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">25<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>float()<\/strong><\/td><td>Return a Python floating point number built from the given number.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">26<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>format()<\/strong><\/td><td>A value that you specify is given a format.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">27<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>frozenset()<\/strong><\/td><td>Gives back an object with the name frozenset.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">28<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>getattr()<\/strong><\/td><td>The value of the attribute that was provided is returned by this function (property or method)<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">29<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>globals()<\/strong><\/td><td>This function takes the current global symbol table and returns it as a dictionary.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">30<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>hasattr()<\/strong><\/td><td>Returns True if the given object has the given attribute, method, or property.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">31<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>hash()<\/strong><\/td><td>The value of the object&#8217;s hash that was supplied is returned.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">32<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>help()<\/strong><\/td><td>Functions to run the built-in help system.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">33<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>hex()<\/strong><\/td><td>Performs the conversion of an integer to its corresponding value in hexadecimal.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">34<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>id()<\/strong><\/td><td>This function gives back the object&#8217;s id.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">35<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>input()<\/strong><\/td><td>This function is accepting input from the user.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">36<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>int()<\/strong><\/td><td>Returns an integer number<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">37<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>isinstance()<\/strong><\/td><td>Returns True if the object given is a copy of the object given.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">38<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>issubclass()<\/strong><\/td><td>Python <strong><mark style=\"background-color:rgba(0, 0, 0, 0);color:#ff0000\" class=\"has-inline-color\">issubclass()<\/mark> <\/strong>returns True if the class you choose is a subclass of the object you choose.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">39<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>iter()<\/strong><\/td><td>Returns an object with an iterator.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">40<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>len()<\/strong><\/td><td>Returns an object&#8217;s length.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">41<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>list()<\/strong><\/td><td>Returns a list<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">42<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>locals()<\/strong><\/td><td>Returns the current local symbol table&#8217;s updated dictionary.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">43<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>map()<\/strong><\/td><td>Returns the iterator with the function you specified applied to each item.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">44<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>max()<\/strong><\/td><td>Returns the largest item in an iterable<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">45<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>memoryview()<\/strong><\/td><td>Returns a view object from memory<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">46<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>min()<\/strong><\/td><td>Returns the smallest item in an iterable<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">47<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>next()<\/strong><\/td><td>Returns the next element in an iterable<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">48<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>object()<\/strong><\/td><td>Returns a new object<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">49<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>oct()<\/strong><\/td><td>Converts a number to an octal format.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">50<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>open()<\/strong><\/td><td>Numbers are rounded to the nearest integer.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">51<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>ord()<\/strong><\/td><td>Convert an integer that represents the Unicode of the given character to a string.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">52<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>pow()<\/strong><\/td><td><strong><mark style=\"background-color:rgba(0, 0, 0, 0);color:#ff0000\" class=\"has-inline-color\">pow()<\/mark> <\/strong>function returns the value of <mark style=\"background-color:rgba(0, 0, 0, 0);color:#fc0000\" class=\"has-inline-color\"><strong>x<\/strong><\/mark> times the power of <mark style=\"background-color:rgba(0, 0, 0, 0);color:#ff0000\" class=\"has-inline-color\"><strong>y<\/strong><\/mark><\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">53<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>print()<\/strong><\/td><td>Prints to the default printer.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">54<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>property()<\/strong><\/td><td>Gets, sets, deletes a property<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">55<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>range()<\/strong><\/td><td>Returns a list of numbers, starting with 0 and going up by 1 each time (by default)<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">56<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>repr()<\/strong><\/td><td>Returns a version of an object that can be read.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">57<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>reversed()<\/strong><\/td><td>Returns an iterator that goes in the opposite direction.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">58<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>round()<\/strong><\/td><td>Sort a list and returns it.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">59<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>set()<\/strong><\/td><td>Returns a new set object<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">60<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>setattr()<\/strong><\/td><td>Sets an object&#8217;s attribute (property or method).<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">61<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>slice()<\/strong><\/td><td>Returns a slice object<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">62<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>sorted()<\/strong><\/td><td>Sorts a list and returns it.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">63<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>staticmethod()<\/strong><\/td><td>Makes a method a static method.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">64<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>str()<\/strong><\/td><td>Sort a list and return it.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">65<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>sum()<\/strong><\/td><td>Adds up all of the items in an iterator<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">66<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>super()<\/strong><\/td><td>Returns an instance of the parent class.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">67<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>tuple()<\/strong><\/td><td>Returns a tuple<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">68<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>type()<\/strong><\/td><td>Returns an object&#8217;s type.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">69<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>vars()<\/strong><\/td><td>Returns an object&#8217;s <code>__dict__<\/code> property.<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">70<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>zip()<\/strong><\/td><td>Returns an iterator, from two or more iterators<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">71<\/td><td class=\"has-text-align-center\" data-align=\"center\"><strong>__import__()<\/strong><\/td><td>Is a function that&#8217;s called by the import statement.<\/td><\/tr><\/tbody><\/table><figcaption class=\"wp-element-caption\">Complete Python Built-in Functions<\/figcaption><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p>All of these built-in functions come from the Python official documentation about <a href=\"https:\/\/docs.python.org\/3\/library\/functions.html#built-in-functions\">Built-in Functions<\/a>.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-summary\"><strong>Summary<\/strong><\/h2>\n\n\n\n<p>In summary, we&#8217;ve learned that the latest Python 3.10 has 71 built-in functions that come with it. <\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>In this tutorial, we&#8217;ve talked about what built-in functions are and given a list of all the functions in Python, along with their syntax and some examples of how to use them.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>Finally, check out our list of\u00a0<a href=\"https:\/\/itsourcecode.com\/topics\/python-tutorial\/\"><strong>Python Tutorial Topics<\/strong><\/a>\u00a0if you missed any of our previous lessons.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>In the next post, <a href=\"https:\/\/itsourcecode.com\/python-tutorial\/python-module-vs-package-vs-library\/\">&#8220;<strong>Python Modules<\/strong><\/a>&#8220;, you&#8217;ll find out about the import statement, namespace and scooping, and packages. So go see it as soon as you can!<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<div class=\"wp-block-columns tw-mb-0 tw-stretched-blocks tw-justify-center tw-gutter-no tw-cols-stack-sm tw-cols-card tw-cols-card-border tw-stretched-link is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-buttons tw-mb-0 tw-mt-0 is-content-justification-left is-nowrap is-layout-flex wp-container-core-buttons-is-layout-558b13e7 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-base-3-background-color has-background wp-element-button\" href=\"https:\/\/itsourcecode.com\/python-tutorial\/is-dictionary-mutable-in-python\/\" style=\"border-radius:0px\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-accent-color\">\u2770\u2770<\/mark> <mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-accent-color\"><strong>Previous<\/strong><\/mark><\/a><\/div>\n<\/div>\n\n\n\n<p class=\"has-text-align-left tw-mt-0 tw-mb-0 tw-link-hover-underline\" style=\"font-style:normal;font-weight:100\"><strong>Python Dictionaries<\/strong><\/p>\n<\/div>\n\n\n\n<div class=\"wp-block-column tw-mt-0 tw-mb-0 is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-buttons tw-mb-0 tw-mt-0 is-content-justification-right is-nowrap is-layout-flex wp-container-core-buttons-is-layout-5054138e wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-base-3-background-color has-background wp-element-button\" href=\"https:\/\/itsourcecode.com\/python-tutorial\/python-module-vs-package-vs-library\/\" style=\"border-radius:0px\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-accent-color\"><strong>Next <\/strong>\u2771\u2771<\/mark><\/a><\/div>\n<\/div>\n\n\n\n<p class=\"has-text-align-right tw-mt-0 tw-mb-0 tw-link-hover-underline\" style=\"font-style:normal;font-weight:100\"><strong>Python Modules<\/strong><\/p>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>What are built-in functions in Python? Built-in functions are part of the Python programming language itself and provide essential functionality for various operations. In Python, there are several built-in functions &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Complete Python Built-in Functions with Examples\" class=\"read-more button\" href=\"https:\/\/itsourcecode.com\/python-tutorial\/python-built-in-functions-with-examples\/#more-71495\" aria-label=\"Read more about Complete Python Built-in Functions with Examples\">Read more<\/a><\/p>\n","protected":false},"author":1373,"featured_media":71764,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[61036],"tags":[92256,92257,92255,92246,92247,92245,92241,92248,92249,92262,92243,92253,92242,92252,92251,92244,92260,92259,92254,92258],"class_list":["post-71495","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-python-tutorial","tag-built-in-function-in-python-with-examples","tag-built-in-functions-in-python-with-example","tag-built-in-functions-in-python-with-examples","tag-complete-built-in-functions-in-python","tag-complete-built-in-functions-in-python-with-examples","tag-complete-python-built-in-functions","tag-complete-python-built-in-functions-with-syntax-and-examples","tag-function-in-python","tag-functions-in-python-with-examples","tag-how-many-built-in-functions-are-in-python","tag-how-many-functions-in-python","tag-list-functions-in-python-with-examples","tag-python-built-in-functions-with-examples","tag-python-built-in-functions-with-examples-pdf","tag-python-functions","tag-python-list-built-in-functions","tag-what-is-built-in-functions-in-python-with-examples","tag-what-is-built-in-functions-in-python","tag-what-is-function-in-python-with-example","tag-what-is-python-built-in-functions","resize-featured-image"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.1 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Complete Python Built-in Functions with Examples<\/title>\n<meta name=\"description\" content=\"Check out the list of all the built-in functions in Python with examples, as well as their syntax. Read on!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/itsourcecode.com\/python-tutorial\/python-built-in-functions-with-examples\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Complete Python Built-in Functions with Examples\" \/>\n<meta property=\"og:description\" content=\"Check out the list of all the built-in functions in Python with examples, as well as their syntax. Read on!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/itsourcecode.com\/python-tutorial\/python-built-in-functions-with-examples\/\" \/>\n<meta property=\"og:site_name\" content=\"Itsourcecode.com\" \/>\n<meta property=\"article:author\" content=\"www.facebook.com\/unguardable7\" \/>\n<meta property=\"article:published_time\" content=\"2022-07-18T02:58:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-25T09:15:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/itsourcecode.com\/wp-content\/uploads\/2022\/07\/Complete-Python-Built-in-Functions-with-Syntax-and-Examples.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1460\" \/>\n\t<meta property=\"og:image:height\" content=\"900\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Prince Ly Cesar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@http:\/\/www.twitter.com\/unguardable0729\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prince Ly Cesar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/python-tutorial\\\/python-built-in-functions-with-examples\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/python-tutorial\\\/python-built-in-functions-with-examples\\\/\"},\"author\":{\"name\":\"Prince Ly Cesar\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#\\\/schema\\\/person\\\/8d6ff1c108160ddbd60ff17cbb9f626b\"},\"headline\":\"Complete Python Built-in Functions with Examples\",\"datePublished\":\"2022-07-18T02:58:47+00:00\",\"dateModified\":\"2023-10-25T09:15:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/python-tutorial\\\/python-built-in-functions-with-examples\\\/\"},\"wordCount\":1061,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#\\\/schema\\\/person\\\/ad9e0497e03b85a9ca299d935298f5dc\"},\"image\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/python-tutorial\\\/python-built-in-functions-with-examples\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/Complete-Python-Built-in-Functions-with-Syntax-and-Examples.png\",\"keywords\":[\"built in function in python with examples\",\"built in functions in python with example\",\"built in functions in python with examples\",\"complete built-in functions in python\",\"complete built-in functions in python with examples\",\"complete python built-in functions\",\"Complete Python Built-in Functions with Syntax and Examples\",\"function in python\",\"functions in python with examples\",\"how many built in functions are in python\",\"how many functions in python\",\"list functions in python with examples\",\"python built-in functions with examples\",\"python built-in functions with examples pdf\",\"python functions\",\"python list built-in functions\",\"what is built-in functions in python with examples?\",\"what is built-in functions in python?\",\"what is function in python with example\",\"what is python built-in functions?\"],\"articleSection\":[\"Python Tutorial\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/itsourcecode.com\\\/python-tutorial\\\/python-built-in-functions-with-examples\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/python-tutorial\\\/python-built-in-functions-with-examples\\\/\",\"url\":\"https:\\\/\\\/itsourcecode.com\\\/python-tutorial\\\/python-built-in-functions-with-examples\\\/\",\"name\":\"Complete Python Built-in Functions with Examples\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/python-tutorial\\\/python-built-in-functions-with-examples\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/python-tutorial\\\/python-built-in-functions-with-examples\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/Complete-Python-Built-in-Functions-with-Syntax-and-Examples.png\",\"datePublished\":\"2022-07-18T02:58:47+00:00\",\"dateModified\":\"2023-10-25T09:15:55+00:00\",\"description\":\"Check out the list of all the built-in functions in Python with examples, as well as their syntax. Read on!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/python-tutorial\\\/python-built-in-functions-with-examples\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/itsourcecode.com\\\/python-tutorial\\\/python-built-in-functions-with-examples\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/python-tutorial\\\/python-built-in-functions-with-examples\\\/#primaryimage\",\"url\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/Complete-Python-Built-in-Functions-with-Syntax-and-Examples.png\",\"contentUrl\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/Complete-Python-Built-in-Functions-with-Syntax-and-Examples.png\",\"width\":1460,\"height\":900,\"caption\":\"Complete Python Built-in Functions with Syntax and Examples\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/python-tutorial\\\/python-built-in-functions-with-examples\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/itsourcecode.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Complete Python Built-in Functions with Examples\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#website\",\"url\":\"https:\\\/\\\/itsourcecode.com\\\/\",\"name\":\"Itsourcecode.com\",\"description\":\"Partner In Your Coding Journey!\",\"publisher\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#\\\/schema\\\/person\\\/ad9e0497e03b85a9ca299d935298f5dc\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/itsourcecode.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#\\\/schema\\\/person\\\/ad9e0497e03b85a9ca299d935298f5dc\",\"name\":\"itsourcecode\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/IT-SOURCECODE_ICON-07.jpg\",\"url\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/IT-SOURCECODE_ICON-07.jpg\",\"contentUrl\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/IT-SOURCECODE_ICON-07.jpg\",\"width\":409,\"height\":409,\"caption\":\"itsourcecode\"},\"logo\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/IT-SOURCECODE_ICON-07.jpg\"},\"description\":\"Hello Itsourcecoders, welcome to itsourcecode.com. I'm Joken Villanueva, MIT a passionate Blogger, Programmer and a Hobbyist. I started Itsourcecode because I wanted to give back and Share all the learnings and knowledge I've learned in my career and I believe through this website I would be able to help and assist those newbie programmers in enhancing their skills from different programming languages. So let us all help each other by sharing our ideas!\",\"sameAs\":[\"https:\\\/\\\/itsourcecode.com\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#\\\/schema\\\/person\\\/8d6ff1c108160ddbd60ff17cbb9f626b\",\"name\":\"Prince Ly Cesar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/litespeed\\\/avatar\\\/8fc9fa13530f18706fe0948f4673fae8.jpg?ver=1776478215\",\"url\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/litespeed\\\/avatar\\\/8fc9fa13530f18706fe0948f4673fae8.jpg?ver=1776478215\",\"contentUrl\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/litespeed\\\/avatar\\\/8fc9fa13530f18706fe0948f4673fae8.jpg?ver=1776478215\",\"caption\":\"Prince Ly Cesar\"},\"description\":\"Hi there! I'm Prince Ly Cesar a Student in Carlos Hilado Memorial State College - Binalbagan Campus and a Graphic Designer, Programmer &amp; Writer in IT SourceCode\",\"sameAs\":[\"https:\\\/\\\/activadorkeys.com\\\/\",\"www.facebook.com\\\/unguardable7\",\"http:\\\/\\\/www.instagram.com\\\/prnclycsr\\\/\",\"https:\\\/\\\/x.com\\\/http:\\\/\\\/www.twitter.com\\\/unguardable0729\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCF0BIqB5tpnCmwvYQCHucmw?view_as=subscriber\"],\"gender\":\"male\",\"knowsAbout\":[\"Graphic Designing\"],\"knowsLanguage\":[\"English\",\"Tagalog\"],\"jobTitle\":\"Graphic Designer\",\"worksFor\":\"IT SourceCode\",\"url\":\"https:\\\/\\\/itsourcecode.com\\\/author\\\/unguardable\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Complete Python Built-in Functions with Examples","description":"Check out the list of all the built-in functions in Python with examples, as well as their syntax. Read on!","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:\/\/itsourcecode.com\/python-tutorial\/python-built-in-functions-with-examples\/","og_locale":"en_US","og_type":"article","og_title":"Complete Python Built-in Functions with Examples","og_description":"Check out the list of all the built-in functions in Python with examples, as well as their syntax. Read on!","og_url":"https:\/\/itsourcecode.com\/python-tutorial\/python-built-in-functions-with-examples\/","og_site_name":"Itsourcecode.com","article_author":"www.facebook.com\/unguardable7","article_published_time":"2022-07-18T02:58:47+00:00","article_modified_time":"2023-10-25T09:15:55+00:00","og_image":[{"width":1460,"height":900,"url":"https:\/\/itsourcecode.com\/wp-content\/uploads\/2022\/07\/Complete-Python-Built-in-Functions-with-Syntax-and-Examples.png","type":"image\/png"}],"author":"Prince Ly Cesar","twitter_card":"summary_large_image","twitter_creator":"@http:\/\/www.twitter.com\/unguardable0729","twitter_misc":{"Written by":"Prince Ly Cesar","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/itsourcecode.com\/python-tutorial\/python-built-in-functions-with-examples\/#article","isPartOf":{"@id":"https:\/\/itsourcecode.com\/python-tutorial\/python-built-in-functions-with-examples\/"},"author":{"name":"Prince Ly Cesar","@id":"https:\/\/itsourcecode.com\/#\/schema\/person\/8d6ff1c108160ddbd60ff17cbb9f626b"},"headline":"Complete Python Built-in Functions with Examples","datePublished":"2022-07-18T02:58:47+00:00","dateModified":"2023-10-25T09:15:55+00:00","mainEntityOfPage":{"@id":"https:\/\/itsourcecode.com\/python-tutorial\/python-built-in-functions-with-examples\/"},"wordCount":1061,"commentCount":0,"publisher":{"@id":"https:\/\/itsourcecode.com\/#\/schema\/person\/ad9e0497e03b85a9ca299d935298f5dc"},"image":{"@id":"https:\/\/itsourcecode.com\/python-tutorial\/python-built-in-functions-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/itsourcecode.com\/wp-content\/uploads\/2022\/07\/Complete-Python-Built-in-Functions-with-Syntax-and-Examples.png","keywords":["built in function in python with examples","built in functions in python with example","built in functions in python with examples","complete built-in functions in python","complete built-in functions in python with examples","complete python built-in functions","Complete Python Built-in Functions with Syntax and Examples","function in python","functions in python with examples","how many built in functions are in python","how many functions in python","list functions in python with examples","python built-in functions with examples","python built-in functions with examples pdf","python functions","python list built-in functions","what is built-in functions in python with examples?","what is built-in functions in python?","what is function in python with example","what is python built-in functions?"],"articleSection":["Python Tutorial"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/itsourcecode.com\/python-tutorial\/python-built-in-functions-with-examples\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/itsourcecode.com\/python-tutorial\/python-built-in-functions-with-examples\/","url":"https:\/\/itsourcecode.com\/python-tutorial\/python-built-in-functions-with-examples\/","name":"Complete Python Built-in Functions with Examples","isPartOf":{"@id":"https:\/\/itsourcecode.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/itsourcecode.com\/python-tutorial\/python-built-in-functions-with-examples\/#primaryimage"},"image":{"@id":"https:\/\/itsourcecode.com\/python-tutorial\/python-built-in-functions-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/itsourcecode.com\/wp-content\/uploads\/2022\/07\/Complete-Python-Built-in-Functions-with-Syntax-and-Examples.png","datePublished":"2022-07-18T02:58:47+00:00","dateModified":"2023-10-25T09:15:55+00:00","description":"Check out the list of all the built-in functions in Python with examples, as well as their syntax. Read on!","breadcrumb":{"@id":"https:\/\/itsourcecode.com\/python-tutorial\/python-built-in-functions-with-examples\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/itsourcecode.com\/python-tutorial\/python-built-in-functions-with-examples\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/itsourcecode.com\/python-tutorial\/python-built-in-functions-with-examples\/#primaryimage","url":"https:\/\/itsourcecode.com\/wp-content\/uploads\/2022\/07\/Complete-Python-Built-in-Functions-with-Syntax-and-Examples.png","contentUrl":"https:\/\/itsourcecode.com\/wp-content\/uploads\/2022\/07\/Complete-Python-Built-in-Functions-with-Syntax-and-Examples.png","width":1460,"height":900,"caption":"Complete Python Built-in Functions with Syntax and Examples"},{"@type":"BreadcrumbList","@id":"https:\/\/itsourcecode.com\/python-tutorial\/python-built-in-functions-with-examples\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/itsourcecode.com\/"},{"@type":"ListItem","position":2,"name":"Complete Python Built-in Functions with Examples"}]},{"@type":"WebSite","@id":"https:\/\/itsourcecode.com\/#website","url":"https:\/\/itsourcecode.com\/","name":"Itsourcecode.com","description":"Partner In Your Coding Journey!","publisher":{"@id":"https:\/\/itsourcecode.com\/#\/schema\/person\/ad9e0497e03b85a9ca299d935298f5dc"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/itsourcecode.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/itsourcecode.com\/#\/schema\/person\/ad9e0497e03b85a9ca299d935298f5dc","name":"itsourcecode","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/itsourcecode.com\/wp-content\/uploads\/2021\/01\/IT-SOURCECODE_ICON-07.jpg","url":"https:\/\/itsourcecode.com\/wp-content\/uploads\/2021\/01\/IT-SOURCECODE_ICON-07.jpg","contentUrl":"https:\/\/itsourcecode.com\/wp-content\/uploads\/2021\/01\/IT-SOURCECODE_ICON-07.jpg","width":409,"height":409,"caption":"itsourcecode"},"logo":{"@id":"https:\/\/itsourcecode.com\/wp-content\/uploads\/2021\/01\/IT-SOURCECODE_ICON-07.jpg"},"description":"Hello Itsourcecoders, welcome to itsourcecode.com. I'm Joken Villanueva, MIT a passionate Blogger, Programmer and a Hobbyist. I started Itsourcecode because I wanted to give back and Share all the learnings and knowledge I've learned in my career and I believe through this website I would be able to help and assist those newbie programmers in enhancing their skills from different programming languages. So let us all help each other by sharing our ideas!","sameAs":["https:\/\/itsourcecode.com\/"]},{"@type":"Person","@id":"https:\/\/itsourcecode.com\/#\/schema\/person\/8d6ff1c108160ddbd60ff17cbb9f626b","name":"Prince Ly Cesar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/itsourcecode.com\/wp-content\/litespeed\/avatar\/8fc9fa13530f18706fe0948f4673fae8.jpg?ver=1776478215","url":"https:\/\/itsourcecode.com\/wp-content\/litespeed\/avatar\/8fc9fa13530f18706fe0948f4673fae8.jpg?ver=1776478215","contentUrl":"https:\/\/itsourcecode.com\/wp-content\/litespeed\/avatar\/8fc9fa13530f18706fe0948f4673fae8.jpg?ver=1776478215","caption":"Prince Ly Cesar"},"description":"Hi there! I'm Prince Ly Cesar a Student in Carlos Hilado Memorial State College - Binalbagan Campus and a Graphic Designer, Programmer &amp; Writer in IT SourceCode","sameAs":["https:\/\/activadorkeys.com\/","www.facebook.com\/unguardable7","http:\/\/www.instagram.com\/prnclycsr\/","https:\/\/x.com\/http:\/\/www.twitter.com\/unguardable0729","https:\/\/www.youtube.com\/channel\/UCF0BIqB5tpnCmwvYQCHucmw?view_as=subscriber"],"gender":"male","knowsAbout":["Graphic Designing"],"knowsLanguage":["English","Tagalog"],"jobTitle":"Graphic Designer","worksFor":"IT SourceCode","url":"https:\/\/itsourcecode.com\/author\/unguardable\/"}]}},"_links":{"self":[{"href":"https:\/\/itsourcecode.com\/wp-json\/wp\/v2\/posts\/71495","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/itsourcecode.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/itsourcecode.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/itsourcecode.com\/wp-json\/wp\/v2\/users\/1373"}],"replies":[{"embeddable":true,"href":"https:\/\/itsourcecode.com\/wp-json\/wp\/v2\/comments?post=71495"}],"version-history":[{"count":19,"href":"https:\/\/itsourcecode.com\/wp-json\/wp\/v2\/posts\/71495\/revisions"}],"predecessor-version":[{"id":119326,"href":"https:\/\/itsourcecode.com\/wp-json\/wp\/v2\/posts\/71495\/revisions\/119326"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/itsourcecode.com\/wp-json\/wp\/v2\/media\/71764"}],"wp:attachment":[{"href":"https:\/\/itsourcecode.com\/wp-json\/wp\/v2\/media?parent=71495"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/itsourcecode.com\/wp-json\/wp\/v2\/categories?post=71495"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/itsourcecode.com\/wp-json\/wp\/v2\/tags?post=71495"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}