{"id":18190,"date":"2017-08-22T16:15:40","date_gmt":"2017-08-22T13:15:40","guid":{"rendered":"http:\/\/www.webcodegeeks.com\/?p=18190"},"modified":"2018-01-09T09:27:26","modified_gmt":"2018-01-09T07:27:26","slug":"python-built-in-functions-example","status":"publish","type":"post","link":"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/","title":{"rendered":"Python Built In Functions Example"},"content":{"rendered":"<p>Today we will be talking about some built-in functions in Python. Why are they important to know? Well, if you do import a lot of heavy libraries for simple tasks, that will be very inefficient. A good example of that is importing <code>NumPy<\/code> just to calculate the sum of elements in a row! So basically, built-in functions don&#8217;t need to be imported. Let&#8217;s get started, shall we?<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n[ulp id=&#8217;R7QVpFMZmjosABLC&#8217;]<\/p>\n<h2>1. Basic functions<\/h2>\n<p>The first function would be <code>abs()<\/code>. It stands for absolute value, and it shows the distance between the given number from <code>zero<\/code>. For example, let&#8217;s create the program that asks a user for two numbers and returns the answer for either those numbers are identical or not.<\/p>\n<p><span style=\"text-decoration: underline\"><em>Python<\/em><\/span><\/p>\n<pre class=\"brush:python\">num1 = int(input())\r\nnum2 = int(input())\r\n\r\nif abs(num1) == abs(num2):\r\n    print(\"You put numbers that are either identical or have the same absolute value\")\r\nelse:\r\n    print(\"Numbers are different\")\r\n<\/pre>\n<p>Simple enough, right? If we put <code>1<\/code> and <code>-1<\/code>, our output will be <i>&#8220;You put numbers that are either identical or have the same absolute value&#8221;<\/i>.<br \/>\nThe second function I want to cover is probably one of the most used function. That is <code>help()<\/code>. You can find more about any function you want by typing <code>help()<\/code>. However, a lot of people prefer just google it. For example, let&#8217;s find out more about the <code>ufw<\/code>:<\/p>\n<p><span style=\"text-decoration: underline\"><em>Python<\/em><\/span><\/p>\n<pre class=\"brush:bash\">&gt;&gt;&gt; help()\r\n\r\nWelcome to Python 3.5's help utility!\r\n\r\nIf this is your first time using Python, you should definitely check out\r\nthe tutorial on the Internet at http:\/\/docs.python.org\/3.5\/tutorial\/.\r\n\r\nEnter the name of any module, keyword, or topic to get help on writing\r\nPython programs and using Python modules.  To quit this help utility and\r\nreturn to the interpreter, just type \"quit\".\r\n\r\nTo get a list of available modules, keywords, symbols, or topics, type\r\n\"modules\", \"keywords\", \"symbols\", or \"topics\".  Each module also comes\r\nwith a one-line summary of what it does; to list the modules whose name\r\nor summary contain a given string such as \"spam\", type \"modules spam\".\r\n\r\nhelp&gt;ufw\r\n\r\nHelp on package ufw:\r\n\r\nNAME\r\n    ufw\r\n\r\nPACKAGE CONTENTS\r\n    applications\r\n    backend\r\n    backend_iptables\r\n    common\r\n    frontend\r\n    parser\r\n    util\r\n\r\nFILE\r\n    \/usr\/lib\/python3\/dist-packages\/ufw\/__init__.py\r\n\r\n<\/pre>\n<p>Once again, for some it&#8217;s easier to google.<\/p>\n<h2>2. Working with numbers<\/h2>\n<p>The other thing you may face is working with lists and check which element is a maximum and which one is a minimum. For those cases you should use <code>max()<\/code> and <code>min()<\/code>:<\/p>\n<p><span style=\"text-decoration: underline\"><em>Python<\/em><\/span><\/p>\n<pre class=\"brush:python\">exList = []\r\nnumberOfElements = int(input(\"How many numbers in your list?\"))\r\nfor x in range (numberOfElements):\r\n    x = int(input())\r\n    exList.append(x)\r\nprint(\"Your list is:\", exList)\r\nprint(\"Maximum is:\", max(exList))\r\nprint(\"Minimum is:\", min(exList))\r\n<\/pre>\n<p>Simple as it seems. The program asks a user to create a list and output the maximum and minimum elements.<br \/>\nAnother cool feature is rounding! So let&#8217;s use <code>round()<\/code>!<\/p>\n<p><span style=\"text-decoration: underline\"><em>Python<\/em><\/span><\/p>\n<pre class=\"brush:bash\">&gt;&gt;&gt; round(4.8)\r\n5\r\n&gt;&gt;&gt; round(5.212)\r\n5\r\n\r\n#let's see a trick!\r\n#What happens with round(5.5) and round(4.5)?\r\n\r\n&gt;&gt;&gt;round(5.5)\r\n6\r\n&gt;&gt;&gt; round(4.5)\r\n4\r\n<\/pre>\n<p>So the cool thing I wanted to tell you is a <code>round()<\/code> function rounds to the closest even number! Be aware of that.<br \/>\nNow, we do know that there is <code>math<\/code> library that has <code>floor()<\/code> and <code>ceil()<\/code> functions that round up and down. However, in most cases you don&#8217;t really need to use them as much.<\/p>\n<h2>3. Data types<\/h2>\n<p>There is a common mistake that many novice programmers have is to not look for data types. Fortunately, Python has some great functions that can convert data into different types. Let&#8217;s create a string which we will convert into <code>int<\/code>, <code>bool<\/code> and <code>float<\/code>.<\/p>\n<p><span style=\"text-decoration: underline\"><em>Python<\/em><\/span><\/p>\n<pre class=\"brush:bash\">&gt;&gt;&gt; var = \"12\"\r\n&gt;&gt;&gt; print(float(var))\r\n12.0\r\n&gt;&gt;&gt; print(bool(var))<\/pre>\n<p>So it&#8217;s simple as well. The main rule: as long as something can be converted to something else, it will be converted. Otherwise, you can&#8217;t convert <code>str<\/code> &#8220;hello&#8221; to <code>int<\/code>.<\/p>\n<h2>4. Summary<\/h2>\n<p>As we can see, built-in functions are essential to know especially at the beginning. You may work with lists and arrays. If you do that, that doesn&#8217;t always mean that you should strive for using <code>NumPy<\/code> or <code>Pandas<\/code>. Maybe, you just need to do some basic math. However, while you are doing some math, don&#8217;t forget about data types too!<br \/>\nAs for any built-in functions which were not covered, I strongly recommend going <a href=\"https:\/\/docs.python.org\/3\/library\/functions.html\">here<\/a> or use <code>help()<\/code>.<\/p>\n<h2>5. Homework<\/h2>\n<p>There is a small homework I want you to do. Create <code>checkABS.py<\/code> file and write a function that checks absolute value of two numbers. Example of how it can be done can be seen below:<\/p>\n<p><span style=\"text-decoration: underline\"><em>checkABS.py<\/em><\/span><\/p>\n<pre class=\"brush:python\">def checkABS(num1, num2):\r\n    if abs(num1) == abs(num2):\r\n        print(\"You put numbers that are either identical or have the same absolute value\")\r\n    else:\r\n        print(\"Numbers are different\")\r\n<\/pre>\n<p>The second task is to create a function that will output the maximum or minimum element in the given list. Possible solution can be seen below:<\/p>\n<p><span style=\"text-decoration: underline\"><em>checkMaxMin.py<\/em><\/span><\/p>\n<pre class=\"brush:python\">def checkMaxMin():\r\n    exList = []\r\n    numberOfElements = int(input(\"How many numbers in your list?\"))\r\n    for x in range (numberOfElements):\r\n        x = int(input())\r\n        exList.append(x)\r\n    print(exList)\r\n    question = input(\"Max or Min?\\n\")\r\n    if question.lower() == \"max\":\r\n      print(max(exList))\r\n    elif question.lower() == \"min\":\r\n      print(min(exList))\r\n    else:\r\n      print(\"Incorrect input\")\r\ncheckMaxMin()\r\n<\/pre>\n<h2>6. Download the Source Code<\/h2>\n<p>All necessary code can be downloaded.<\/p>\n<div class=\"download\"><strong>Downoload<\/strong><br \/>\nYou can download the full source code of this example here: <a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/python-built-in-functions.zip\"><strong>python-built-in-functions.zip<\/strong><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Today we will be talking about some built-in functions in Python. Why are they important to know? Well, if you do import a lot of heavy libraries for simple tasks, that will be very inefficient. A good example of that is importing NumPy just to calculate the sum of elements in a row! So basically, &hellip;<\/p>\n","protected":false},"author":657,"featured_media":1651,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[53],"tags":[486,308,290],"class_list":["post-18190","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-python","tag-function","tag-functional-programmig","tag-python"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Python Built In Functions Example - Web Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"Built-in functions are essential things that every novice programmer should know. Do you know why? Learn more in this article about built-in functions...\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python Built In Functions Example - Web Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"Built-in functions are essential things that every novice programmer should know. Do you know why? Learn more in this article about built-in functions...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webcodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2017-08-22T13:15:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-01-09T07:27:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/11\/python-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Aleksandr Krasnov\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Aleksandr Krasnov\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/\"},\"author\":{\"name\":\"Aleksandr Krasnov\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/e07867bd46d3c03c70d9566277772373\"},\"headline\":\"Python Built In Functions Example\",\"datePublished\":\"2017-08-22T13:15:40+00:00\",\"dateModified\":\"2018-01-09T07:27:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/\"},\"wordCount\":569,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/11\/python-logo.jpg\",\"keywords\":[\"function\",\"Functional Programmig\",\"python\"],\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/\",\"name\":\"Python Built In Functions Example - Web Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/11\/python-logo.jpg\",\"datePublished\":\"2017-08-22T13:15:40+00:00\",\"dateModified\":\"2018-01-09T07:27:26+00:00\",\"description\":\"Built-in functions are essential things that every novice programmer should know. Do you know why? Learn more in this article about built-in functions...\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/#primaryimage\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/11\/python-logo.jpg\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/11\/python-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python\",\"item\":\"https:\/\/www.webcodegeeks.com\/category\/python\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Python Built In Functions Example\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"name\":\"Web Code Geeks\",\"description\":\"Web Developers Resource Center\",\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webcodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webcodegeeks\",\"https:\/\/x.com\/webcodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/e07867bd46d3c03c70d9566277772373\",\"name\":\"Aleksandr Krasnov\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/773b350dfd4fa0aa4470113fe22f39c38db44fc456aef63c609bf8f05e424dc6?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/773b350dfd4fa0aa4470113fe22f39c38db44fc456aef63c609bf8f05e424dc6?s=96&d=mm&r=g\",\"caption\":\"Aleksandr Krasnov\"},\"description\":\"Aleksandr is passionate about teaching programming. His main interests are Neural Networks, Python and Web development. Hobbies are game development and translating. For the past year, he has been involved in different international projects as SEO and IT architect.\",\"url\":\"https:\/\/www.webcodegeeks.com\/author\/aleksandr-krasnov\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Python Built In Functions Example - Web Code Geeks - 2026","description":"Built-in functions are essential things that every novice programmer should know. Do you know why? Learn more in this article about built-in functions...","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:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/","og_locale":"en_US","og_type":"article","og_title":"Python Built In Functions Example - Web Code Geeks - 2026","og_description":"Built-in functions are essential things that every novice programmer should know. Do you know why? Learn more in this article about built-in functions...","og_url":"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/","og_site_name":"Web Code Geeks","article_publisher":"https:\/\/www.facebook.com\/webcodegeeks","article_published_time":"2017-08-22T13:15:40+00:00","article_modified_time":"2018-01-09T07:27:26+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/11\/python-logo.jpg","type":"image\/jpeg"}],"author":"Aleksandr Krasnov","twitter_card":"summary_large_image","twitter_creator":"@webcodegeeks","twitter_site":"@webcodegeeks","twitter_misc":{"Written by":"Aleksandr Krasnov","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/#article","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/"},"author":{"name":"Aleksandr Krasnov","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/e07867bd46d3c03c70d9566277772373"},"headline":"Python Built In Functions Example","datePublished":"2017-08-22T13:15:40+00:00","dateModified":"2018-01-09T07:27:26+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/"},"wordCount":569,"commentCount":0,"publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/11\/python-logo.jpg","keywords":["function","Functional Programmig","python"],"articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/","url":"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/","name":"Python Built In Functions Example - Web Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/#primaryimage"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/11\/python-logo.jpg","datePublished":"2017-08-22T13:15:40+00:00","dateModified":"2018-01-09T07:27:26+00:00","description":"Built-in functions are essential things that every novice programmer should know. Do you know why? Learn more in this article about built-in functions...","breadcrumb":{"@id":"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/#primaryimage","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/11\/python-logo.jpg","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/11\/python-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.webcodegeeks.com\/python\/python-built-in-functions-example\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Python","item":"https:\/\/www.webcodegeeks.com\/category\/python\/"},{"@type":"ListItem","position":3,"name":"Python Built In Functions Example"}]},{"@type":"WebSite","@id":"https:\/\/www.webcodegeeks.com\/#website","url":"https:\/\/www.webcodegeeks.com\/","name":"Web Code Geeks","description":"Web Developers Resource Center","publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webcodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webcodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.webcodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webcodegeeks","https:\/\/x.com\/webcodegeeks"]},{"@type":"Person","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/e07867bd46d3c03c70d9566277772373","name":"Aleksandr Krasnov","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/773b350dfd4fa0aa4470113fe22f39c38db44fc456aef63c609bf8f05e424dc6?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/773b350dfd4fa0aa4470113fe22f39c38db44fc456aef63c609bf8f05e424dc6?s=96&d=mm&r=g","caption":"Aleksandr Krasnov"},"description":"Aleksandr is passionate about teaching programming. His main interests are Neural Networks, Python and Web development. Hobbies are game development and translating. For the past year, he has been involved in different international projects as SEO and IT architect.","url":"https:\/\/www.webcodegeeks.com\/author\/aleksandr-krasnov\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/18190","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/users\/657"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/comments?post=18190"}],"version-history":[{"count":0,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/18190\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media\/1651"}],"wp:attachment":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media?parent=18190"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/categories?post=18190"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/tags?post=18190"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}