{"id":6652,"date":"2017-11-13T00:41:36","date_gmt":"2017-11-12T19:11:36","guid":{"rendered":"https:\/\/techbeamers.com\/?p=6652"},"modified":"2025-11-30T23:55:34","modified_gmt":"2025-12-01T04:55:34","slug":"python-data-types-learn-basic-advanced","status":"publish","type":"post","link":"https:\/\/techbeamers.com\/python-data-types-learn-basic-advanced\/","title":{"rendered":"Python Data Types Explained with Examples (Beginners Guide)"},"content":{"rendered":"\n<p>Variables stores data and data types control the type of value they can store. This Python tutorial covers all the essential data types in Python. Just to know that Python uses dynamic typing meaning a variable&#8217;s type is determined at runtime.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-here-is-everything-you-need-to-know\">Know Everything about Python Data Types<\/h2>\n\n\n\n<p>We have here a very crisp and concise detail on the 8 data types. Please remember these are basic building blocks of Python programming. Hence, you must at least go through the optimal detail provided here.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-boolean-data-type\">Boolean Data Type<\/h3>\n\n\n\n<p>A Boolean is a data type available in almost every programming language, including Python. It can have two values: True or False, which are constants used for assignment, comparison, and controlling program flow. Here\u2019s a simple example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>condition = False\nif condition == True:\n    print(\"You can continue with the program.\")\nelse:\n    print(\"The program will end here.\")<\/code><\/pre>\n\n\n\n<p>While making boolean conditions in Python, we can skip the explicit comparison in our code. And we&#8217;ll still get the same behavior.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>condition = False\nif condition:\n    print(\"You can continue with the program.\")\nelse:\n    print(\"The program will end here.\")<\/code><\/pre>\n\n\n\n<p>The above code will yield the same output as the previous one due to the below statement<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>if condition:<\/code><\/pre>\n\n\n\n<p>is equivalent to,<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>if condition == True:<\/code><\/pre>\n\n\n\n<p>Next, an expression in Python can also produce a boolean result.<\/p>\n\n\n\n<p><strong>For example &#8211;<\/strong> The expression in a condition block will yield a boolean value. Python creates boolean contexts to evaluate expressions.<\/p>\n\n\n\n<p>Whatever the expression is, Python will use the boolean context to determine its truth value. Since Python has many data types, it operates with its own rules to find the result in a boolean context.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>str = \"Learn Python\"\n\nprint( len(str) )        # 12\nprint( len(str) == 12 )  # True\nprint( len(str) != 12 )  # False<\/code><\/pre>\n\n\n\n<p>In some cases, the boolean constants &#8220;True&#8221; and &#8220;False&#8221; might also act as numbers.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>A, B = True + 0, False + 0\nprint(A, B)  # 1 0\nprint( type(A), type(B) )  # (&lt;class 'int'&gt;, &lt;class 'int'&gt;)<\/code><\/pre>\n\n\n\n<p>It is evident from the above example that True is 1 and the value of False is 0. And they will turn into numbers during arithmetic operations.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-number-data-type-in-python\">Number Data Type in Python<\/h3>\n\n\n\n<p>Numbers are one of the most important data types in Python. Unlike many languages that only have integers and floats, Python also supports complex numbers. Learn more about <a href=\"https:\/\/techbeamers.com\/python-float-function\/\">floats in Python<\/a> and how to work with them.<\/p>\n\n\n\n<p>Here are a few points for you to ponder.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The numbers in Python are classified using the following keywords: int, float, and complex.<\/li>\n\n\n\n<li>Python has a built-in function type()&nbsp;to determine the data type of a variable or the value.<\/li>\n\n\n\n<li>Another built-in function isinstance() is there for testing the type of an object.<\/li>\n\n\n\n<li>In Python, we can add a <strong>&#8220;j&#8221;<\/strong> or <strong>&#8220;J&#8221;<\/strong> after a number to make it imaginary or complex.<\/li>\n<\/ul>\n\n\n\n<p><strong>Example.<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>num = 2\nprint(\"The number (\", num, \") is of type\", type(num))\n\nnum = 3.0\nprint(\"The number (\", num, \") is of type\", type(num))\n\nnum = 3+5j\nprint(\"The number \", num, \" is of type\", type(num))\nprint(\"The number \", num, \" is complex number?\", isinstance(3+5j, complex))<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>#Output\nThe number ( 2 ) is of type &lt;class 'int'&gt;\nThe number ( 3.0 ) is of type &lt;class 'float'&gt;\nThe number (3+5j) is of type &lt;class 'complex'&gt;\nThe number (3+5j) is complex number? True<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>We can create a complex number by using the type as a constructor. See the example below.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>print( complex(1.2,5)) #(1.2+5j)<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Integers in Python don&#8217;t have any size limitation as long as the required memory is available.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>num = 1234567890123456789\nprint( num.bit_length() ) # 61\nprint( num ) # 1234567890123456789\n\nnum=1234567890123456789123456789012345678912345678901234567891234567890123456789\nprint( num.bit_length() ) # 250\nprint( num ) # 1234567890123456789123456789012345678912345678901234567891234567890123456789<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A float-type number can have precision up to 15 decimal places.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>import sys\nprint( sys.float_info )\n\n# sys.float_info(max=1.7976931348623157e+308, max_exp=1024, max_10_exp=308, min=2.2250738585072014e-308, min_exp=-1021, min_10_exp=-307, dig=15, mant_dig=53, epsilon=2.220446049250313e-16, radix=2, rounds=1)\n\nprint( sys.float_info.dig ) # 15<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-python-strings-data-type\">Python Strings Data Type<\/h3>\n\n\n\n<p>In Python, a string is treated as a sequence of characters enclosed in quotes. It can contain letters, numbers, symbols, or spaces. For longer strings spanning multiple lines, Python provides <a href=\"https:\/\/techbeamers.com\/python-multiline-string\/\">multiline strings<\/a>, which use triple quotation marks (&#8220;&#8221;&#8221; or &#8221;&#8217;) at the start and end.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>str = 'A string wrapped in single quotes'\nprint( str ) # 'A string wrapped in single quotes'\nstr = \"A string enclosed within double quotes\"\nprint( str ) # 'A string enclosed within double quotes'\nstr = \"\"\"A multiline string\nstarts and ends with\na triple quotation mark.\"\"\"\nprint( str )\n# 'A multiline string\\nstarts and ends with\\na triple quotation mark.'<\/code><\/pre>\n\n\n\n<p>Also, the strings in Python are immutable. It means the memory will be allocated once and re-used for further operations.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>A = 'Python3'\nprint( id(A) ) # 140186214284656\nB = A\nprint( id(B) ) # 140186214284656<\/code><\/pre>\n\n\n\n<p>You can see the second string shares the same address as the first one does.<\/p>\n\n\n\n<p>Python has two popular versions, namely 2.7 and 3.4. Most programmers around the globe use either of them. The strings in Python 2 are by default non-Unicode (ASCII) but also have support for Unicode.<\/p>\n\n\n\n<p>On the other hand, Python 3 strings are all Unicode (UTF-8).<\/p>\n\n\n\n<p><span style=\"text-decoration: underline;\">Strings in Python 2<\/span><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>print(type('Python String'))  # &lt;type 'str'&gt;\nprint(type(u'Python Unicode String'))  # &lt;type 'unicode'&gt;<\/code><\/pre>\n\n\n\n<p><span style=\"text-decoration: underline;\">Strings in Python 3<\/span><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>print(type('Python String'))  # &lt;class 'str'&gt;\nprint(type(u'Python Unicode String'))  # &lt;class 'str'&gt;<\/code><\/pre>\n\n\n\n<p>Python allows you to slice strings using square brackets ([]) to extract a substring. For more details and examples, check out <a href=\"https:\/\/techbeamers.com\/slice-python-string\/\">Python string slicing<\/a>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>str = \"Learn Python\"\nfirst_5_chars = str&#91;0:5]\nprint(first_5_chars)  # Learn\n\nsubstr_from_2_to_5 = str&#91;1:5]\nprint(substr_from_2_to_5)  # earn\n\nsubstr_from_6_to_end = str&#91;6:]\nprint(substr_from_6_to_end)  # ython\n\nlast_2_chars = str&#91;-2:]\nprint(last_2_chars)  # on\n\nfirst_2_chars = str&#91;:2]\nprint(first_2_chars)  # Le\n\ntwo_chars_before_last = str&#91;-3:-1]\nprint(two_chars_before_last)  # ho<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-bytes-data-type-in-python\">Bytes Data Type in Python<\/h3>\n\n\n\n<p>The byte is an immutable type in Python. It can store a sequence of bytes (each 8-bit) ranging from 0 to 255. We can fetch the value of a single byte by using the index. But we can not modify&nbsp;the value. The following are a few differences between a byte and a string.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Byte objects contain a sequence of bytes whereas the strings store a sequence of characters.<\/li>\n\n\n\n<li>The bytes are machine-readable objects whereas the strings are just in human-readable form.<\/li>\n\n\n\n<li>Bytes are machine-readable and can be directly stored on the disk whereas strings need to be encoded before writing them to the disk.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code># Make an empty bytes object (8-bit bytes)\nempty_object = bytes(16)\nprint(type(empty_object))  # &lt;class 'bytes'&gt;\nprint(empty_object)\n# b'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00'<\/code><\/pre>\n\n\n\n<p>One scenario, where bytes matter is when carrying out I\/O operations with buffering enabled. For example, we have a program that continuously receives data over the network. It parses the date after waiting for the message headers and terminators to appear in the stream. It keeps appending the incoming bytes to a buffer.<\/p>\n\n\n\n<p>With <a href=\"https:\/\/techbeamers.com\/python-tutorial-using-pickle-for-serializing-python-objects\/\">Python byte object<\/a>, it is easy to program the above scenario using the below pseudo code.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>buf = b''\nwhile message_not_complete(buf):\n    buf += read_from_socket()<\/code><\/pre>\n\n\n\n<p>In the later sections of this tutorial, we&#8217;ll see the byte-to-string conversion and vice-versa.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-python-lists-data-type\">Python Lists Data Type<\/h3>\n\n\n\n<p><a href=\"https:\/\/techbeamers.com\/python-list\/\">Python list<\/a> is an ordered sequence, similar to an array but can hold different types of objects. It is very flexible and supports dynamic sizing.\u00a0The index in a list begins with a zero position. Here are some more points on it.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A list is a&nbsp;heterogeneous collection of items of varied data types. For example, a list object can store the files in a folder and the employee data in a company, etc.<\/li>\n\n\n\n<li>Lists in Python are easy to create by&nbsp;placing elements inside square brackets separated by commas.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>assorted_list = &#91;True, False, 1, 1.1, 1+2j, 'Learn', b'Python']\nfirst_element = assorted_list&#91;0]\nprint(first_element)  # True\nprint(assorted_list)  # &#91;True, False, 1, 1.1, (1+2j), 'Learn', b'Python']\n\nfor item in assorted_list:\n    print(type(item))\n\n\"\"\"\n&lt;class 'bool'&gt;\n&lt;class 'bool'&gt;\n&lt;class 'int'&gt;\n&lt;class 'float'&gt;\n&lt;class 'complex'&gt;\n&lt;class 'str'&gt;\n&lt;class 'bytes'&gt;\n\"\"\"<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>List objects are mutable. Python allows modifying a list or its elements via assignments and through the built-in list methods.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>simpleton = &#91;'Learn', 'Python', '2']\nprint( id(simpleton) )  # 56321160\nprint( simpleton )  # &#91;'Learn', 'Python', '2']\n\nsimpleton&#91;2] = '3'\nprint( id(simpleton) )  # 56321160\n\nprint( simpleton )  # &#91;'Learn', 'Python', '3']<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Interestingly, a list can contain another list. Such a list is called a <a href=\"https:\/\/techbeamers.com\/python-nested-lists\/\">nested list in Python<\/a>.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>nested = &#91;&#91;1,1,1], &#91;2,2,2], &#91;3,3,3]]\nfor items in nested:\n    for item in items:\n        print(item, end=' ')\n\t\t\n# 1 1 1 2 2 2 3 3 3<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tuples-data-type-in-python\">Tuples Data Type in Python<\/h3>\n\n\n\n<p>A <a href=\"https:\/\/techbeamers.com\/python-tuple\/\">Python tuple<\/a> is a heterogeneous collection of objects separated by commas. It means objects of different data types can co-exist in a tuple. The tuple and a list are somewhat similar as they share the following traits.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Both objects are a type of ordered sequence.<\/li>\n\n\n\n<li>Each of them allows indexing and repetition.<\/li>\n\n\n\n<li>Nesting is permitted.<\/li>\n\n\n\n<li>They can store values of different types.<\/li>\n<\/ul>\n\n\n\n<p>Below are some basic Python tuple examples.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Defining a tuple without any element\npure_tuple = ()\nprint(pure_tuple)  # Output- ()\n\n# Creating a tuple with nested tuples\nfirst_tuple = (3, 5, 7, 9)\nsecond_tuple = ('learn', 'python 3')\nnested_tuple = (first_tuple, second_tuple)\nprint(nested_tuple)\n\n# Creating a tuple with nested tuples\nfirst_tuple = (3, 5, 7, 9)\nsecond_tuple = ('learn', 'python 3')\nnested_tuple = (first_tuple, second_tuple)\nprint(nested_tuple)\n\n# Repetition in tuples\nsample_tuple = ('Python 3',)*3\nprint(sample_tuple)<\/code><\/pre>\n\n\n\n<p><strong>How is a tuple different than the list?<\/strong><\/p>\n\n\n\n<p>Tuples do differ a bit from the list as they are immutable. Python does not allow to modify a tuple after it is created. We can not add or remove any element later. Instead, Python expects us to create a new one with the updated sequence of elements.<\/p>\n\n\n\n<p><strong>Can a tuple have mutable objects as elements?<\/strong><\/p>\n\n\n\n<p>Here, comes the surprise. Modifying a tuple is forbidden. But Python doesn\u2019t enforce it for the elements. It means we can update them if they are mutable objects.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-python-sets-data-type\">Python Set Data Type<\/h3>\n\n\n\n<p>A Set is an unordered collection of unique and immutable objects.&nbsp;Its definition starts with enclosing braces { } having its elements separated by commas inside. Amongst all the Python data types, Set supports mathematical operations like union, intersection, symmetric difference, etc.<\/p>\n\n\n\n<p><a href=\"https:\/\/techbeamers.com\/python-set\/\">Python Set<\/a> is similar to the &#8220;Set&#8221; in mathematics,\u00a0hence it can&#8217;t have multiple occurrences of the same element.<\/p>\n\n\n\n<p><strong>What makes a Python set better than a list?<\/strong><\/p>\n\n\n\n<p>Python Set implements a highly optimized way to check whether it holds a specific element. This mechanism is known as a hash table.<br><br>To create a set, call the built-in&nbsp;set()&nbsp;function with a sequence or any iterable object.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sample_set = set(\"Python data types\")\nprint( type(sample_set) ) # &lt;class 'set'>\nprint( sample_set )\n\n# {'e', 'y', 't', 'o', ' ', 'd', 's', 'P', 'p', 'n', 'h', 'a'}<\/code><\/pre>\n\n\n\n<p>Another simpler way is to specify the elements enclosed in curly braces {}.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>another_set = {'red', 'green', 'black'}\nprint( type(another_set) ) # &lt;class 'set'>\nprint( another_set) # {'red', 'green', 'black'}<\/code><\/pre>\n\n\n\n<p><strong>What is a Frozen set in Python?<\/strong><\/p>\n\n\n\n<p>A frozen set is a processed form of the traditional set. It is immutable and only supports methods and operators that execute without altering the frozen set used in the context.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># An empty frozenset\nprint( frozenset() ) # frozenset()\ncities = {\"New York City\", \"Saint Petersburg\", \"London\", \"Munich\", \"Paris\"}\nfset = frozenset(cities)\nprint( type(fset) ) # &lt;class 'frozenset'><\/code><\/pre>\n\n\n\n<p>Read: <a href=\"https:\/\/techbeamers.com\/check-the-type-of-variables-in-python\/\">How to check type of variable in Python<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-dictionaries-in-python\">Dictionaries in Python<\/h3>\n\n\n\n<p>A dictionary in Python is an unordered collection of key-value pairs. It&#8217;s a built-in mapping type in Python where keys map to values.\u00a0These key-value pairs provide an intuitive way to store data.<\/p>\n\n\n\n<p><strong>What is the need of a dictionary?<\/strong><\/p>\n\n\n\n<p><a href=\"https:\/\/techbeamers.com\/python-dictionary\/\">Python dictionary<\/a> solves the problem of managing a large data set. It is designed to be highly optimized for storing and retrieving data.<\/p>\n\n\n\n<p>Python syntax for creating dictionaries uses braces {} where each item appears as a pair of&nbsp;keys and values. The key and&nbsp;value can be of any Python data type.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sample_dict = {'key':'value', 'jan':31, 'feb':28, 'mar':31}\nprint( type(sample_dict) ) # &lt;class 'dict'>\nprint( sample_dict )\n# {'mar': 31, 'key': 'value', 'jan': 31, 'feb': 28}<\/code><\/pre>\n\n\n\n<p><strong>How do you access dictionary elements with keys?<\/strong><\/p>\n\n\n\n<p>Dictionaries act&nbsp;like a database. Here, we don\u2019t use a number to get a particular index value as we do with a list. Instead, we replace it with a&nbsp;key and then use the key to fetch its value.<\/p>\n\n\n\n<p>Check: <a href=\"https:\/\/techbeamers.com\/search-keys-dictionary-python\/\">How to search keys in a Python dictionary<\/a><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sample_dict = {'key':'value', 'jan':31, 'feb':28, 'mar':31}\nprint( sample_dict&#91;'jan'] ) # 31\nprint( sample_dict&#91;'feb'] ) # 28<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-before-you-leave\">Summary: Different Data Types in Python<\/h2>\n\n\n\n<p>This course covered the various Python data types and tried to explain them with examples. You may find all the relevant information here which can be useful for you in developing Python programs.<\/p>\n\n\n\n<p>If you liked this tutorial, share it on your social media. Also, don&#8217;t forget to subscribe to our <a href=\"https:\/\/youtube.com\/@techbeamers\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube channel<\/a>.<\/p>\n\n\n\n<p>To learn Python more comprehensively, check out the following course which is again freely available.<\/p>\n\n\n\n<div class=\"wp-block-foxiz-elements-affiliate-product gb-wrap af-product yes-shadow\" style=\"--rating-size:20px;--border-style:dashed;--border-width:5px 5px 5px 5px;--border-color:#abb8c3;--desktop-padding:30px 30px 30px 30px;--tablet-padding:25px 25px 25px 25px;--mobile-padding:20px 20px 20px 20px\"><a href=\"https:\/\/techbeamers.com\/python-tutorial-step-by-step\/\" class=\"af-link\"><\/a><div class=\"af-inner\"><img decoding=\"async\" loading=\"lazy\" class=\"af-image\" src=\"https:\/\/techbeamers.com\/wp-content\/uploads\/2017\/07\/Python-Tutorial-History-Installation-Core-Programming-Concepts.png\" height=\"400\" width=\"700\" alt=\"Python Tutorial to Learn and Practice\"\/><div class=\"af-content\"><p class=\"af-heading gb-heading none-toc\">Free Python Course for Beginners<\/p><p class=\"af-description gb-description\">Step-by-step Python course with 80+ tutorials, 20+ quizzes, and 100+ practice exercises.<\/p><\/div><div class=\"af-cta-wrap\"><span class=\"af-price h3\">100+<\/span><a href=\"https:\/\/techbeamers.com\/python-tutorial-step-by-step\/\" class=\"af-button is-btn\">Python Tutorials<\/a><\/div><\/div><\/div>\n\n\n\n<p><strong>Enjoy Coding,<br>TechBeamers<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Variables stores data and data types control the type of value they can store. This Python tutorial covers all the essential data types in Python. Just to know that Python uses dynamic typing meaning a variable&#8217;s type is determined at runtime. Know Everything about Python Data Types We have here a very crisp and concise [&hellip;]<\/p>\n","protected":false},"author":321,"featured_media":6653,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":"","jetpack_post_was_ever_published":false},"categories":[92],"tags":[],"class_list":{"0":"post-6652","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-python-programming-tutorials"},"jetpack_featured_media_url":"https:\/\/techbeamers.com\/wp-content\/uploads\/2017\/11\/Python-Data-Types-Learn-from-Basic-to-Advanced.png","_links":{"self":[{"href":"https:\/\/techbeamers.com\/wp-json\/wp\/v2\/posts\/6652","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/techbeamers.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/techbeamers.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/techbeamers.com\/wp-json\/wp\/v2\/users\/321"}],"replies":[{"embeddable":true,"href":"https:\/\/techbeamers.com\/wp-json\/wp\/v2\/comments?post=6652"}],"version-history":[{"count":2,"href":"https:\/\/techbeamers.com\/wp-json\/wp\/v2\/posts\/6652\/revisions"}],"predecessor-version":[{"id":23932,"href":"https:\/\/techbeamers.com\/wp-json\/wp\/v2\/posts\/6652\/revisions\/23932"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/techbeamers.com\/wp-json\/wp\/v2\/media\/6653"}],"wp:attachment":[{"href":"https:\/\/techbeamers.com\/wp-json\/wp\/v2\/media?parent=6652"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/techbeamers.com\/wp-json\/wp\/v2\/categories?post=6652"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/techbeamers.com\/wp-json\/wp\/v2\/tags?post=6652"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}