

{"id":111935,"date":"2023-02-11T11:30:08","date_gmt":"2023-02-11T06:00:08","guid":{"rendered":"https:\/\/data-flair.training\/blogs\/?p=111935"},"modified":"2023-02-11T13:21:10","modified_gmt":"2023-02-11T07:51:10","slug":"tail-command-in-linux","status":"publish","type":"post","link":"https:\/\/data-flair.training\/blogs\/tail-command-in-linux\/","title":{"rendered":"Tail Command in Linux"},"content":{"rendered":"<p>In this article, we will learn everything about the tail command in Linux. We will look at what the tail command is, its uses, its syntax, and the options used along with it. In the end, we will look at some useful, practical examples of the tail command and its options to understand how they work. So pay attention, take notes and read the entire article for the best benefits.<\/p>\n<h3>What is linux tail command?<\/h3>\n<p>Tail is a command-line-based utility in Linux-based operating systems that prints the last &#8220;n&#8221; number of lines or data of the given input. This input can either be a file or a data stream. The head command is the exact opposite of the tail command.<\/p>\n<p>You can determine the number of lines you want the tail command to print, but if you don&#8217;t specify anything, the tail command will automatically print the last ten lines of the input. The best part of the tail command is that you can also specify more than one input file. If you do so, data from each file is preceded by its name.<\/p>\n<p>To get more information, you can even pipe the tail command to other shell commands like grep, sort, wc, and more. This is helpful when considering only the input&#8217;s last &#8220;n&#8221; lines. We can also pair the tail command with a range of options, which we will look at how to use in later sections of this article.<\/p>\n<h3>Syntax of the tail command<\/h3>\n<p>The syntax of the tail command is very straightforward:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">tail &lt;options&gt; &lt;file&gt;<\/pre>\n<p>Let us look at the options present in the syntax of the tail command:<\/p>\n<p><strong>1. &lt;options&gt;<\/strong><\/p>\n<p>It takes various options specifying how the tail command must function, format, and print the output. You can specify multiple options in this field.<\/p>\n<p><strong>2. &lt;file&gt;<\/strong><\/p>\n<p>This option takes in the file&#8217;s name we want to pass as the input to the tail command. If you specify no filename, the tail command will read the input from the standard input. As discussed earlier, you can also enter multiple filenames in this field.<\/p>\n<h3>Options used with the tail command<\/h3>\n<p>Unlike most of the commands in Linux, the tail command has only a few options associated with it. Let us take a brief look at each one of them:<\/p>\n<p><strong>1. -c<\/strong><\/p>\n<p>This option prints the last specified number of bytes of each file. If you specify the number with a negative symbol (-), the tail command will act as the head command and print the first specified number of bytes of each file. You can also write this command as &#8220;&#8211;bytes.&#8221;<\/p>\n<p><strong>2. &#8211;help<\/strong><\/p>\n<p>This option prints the help menu of the tail command, as shown below:<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/help-menu-of-the-tail-command.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-111999\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/help-menu-of-the-tail-command.webp\" alt=\"help menu of the tail command\" width=\"1073\" height=\"597\" \/><\/a><\/p>\n<p><strong>3. -n<\/strong><\/p>\n<p>This option prints the last specified number of lines instead of the last 10, which is the default setting. If you specify the number with a negative symbol (-), the tail command will act as the head command and print each file&#8217;s first specified number of lines. You can also write this command as &#8220;&#8211;lines.&#8221;<\/p>\n<p><strong>4. -q<\/strong><\/p>\n<p>This option never prints the headers identifying the file names. You can also write this command as &#8220;&#8211;quiet.&#8221;<\/p>\n<p><strong>5. &#8211;version<\/strong><\/p>\n<p>This option prints information regarding the version of the tail command.<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/version-of-the-tail-command.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-112000\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/version-of-the-tail-command.webp\" alt=\"version of the tail command\" width=\"1074\" height=\"213\" \/><\/a><\/p>\n<p><strong>6. -v<\/strong><\/p>\n<p>This option provides verbose to the output by printing the headers.<\/p>\n<p><strong>7. -f<\/strong><\/p>\n<p>This option causes the tail command to loop forever by checking the files for new data at the end of the file or files.<\/p>\n<p><strong>8. &#8211;max-unchanged<\/strong><\/p>\n<p>This option looks for new data to print if the size changes by reopening the file.<\/p>\n<p><strong>9. &#8211;retry<\/strong><\/p>\n<p>This option tries to open a file even if it&#8217;s inaccessible temporarily. It is beneficial when paired with the option &#8220;&#8211;follow=name&#8221;.<\/p>\n<p>Now that we have covered the basics and the theoretical part of the tail command, let us understand how the tail command and its options work by looking at some practical examples of it in the terminal of Ubuntu 20.04.<\/p>\n<p>Before we head on to look at the examples, we need a sample text file to perform the tail command on, hence let us consider the sample text file shown below:<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/sample-text-file-to-test-the-tail-command-on-1.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-112003\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/sample-text-file-to-test-the-tail-command-on-1.webp\" alt=\"sample text file to test the tail command on\" width=\"1073\" height=\"275\" \/><\/a><\/p>\n<h3>Using the tail command with no options<\/h3>\n<p>If we use the tail command followed by the name of the file you want the tail command to read the input from, it prints the last ten lines of the file as shown below:<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/using-the-tail-command-with-no-options.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-112004\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/using-the-tail-command-with-no-options.webp\" alt=\"using the tail command with no options\" width=\"1074\" height=\"264\" \/><\/a><\/p>\n<h3>Displaying a specific number of lines<\/h3>\n<p>If you want to display a certain number of lines instead of the default 10, pair the tail command with the option &#8220;-n&#8221; followed by the number of lines you want to see and the filename:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">tail -n &lt;number&gt; &lt;filename&gt;<\/pre>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/displaying-a-specific-number-of-lines.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-112005\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/displaying-a-specific-number-of-lines.webp\" alt=\"displaying a specific number of lines\" width=\"1073\" height=\"301\" \/><\/a><\/p>\n<h3>Displaying a specific number of bytes<\/h3>\n<p>To display a specific number of bytes, run the tail command along with the option &#8220;-c&#8221; followed by the number of bytes you want to see and the filename:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">tail -c &lt;number&gt; &lt;filename&gt;<\/pre>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/displaying-a-specific-number-of-bytes.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-112006\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/displaying-a-specific-number-of-bytes.webp\" alt=\"displaying a specific number of bytes\" width=\"1073\" height=\"351\" \/><\/a><\/p>\n<h3>Displaying the filename<\/h3>\n<p>If you want to display the file&#8217;s name above the output of the tail command for a better understanding, combine the tail command with the option &#8220;-v&#8221;. This option provides verbose to the output for a better understanding. You can use the syntax as shown:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">tail -v &lt;filename&gt;<\/pre>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/displaying-the-filename.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-112007\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/displaying-the-filename.webp\" alt=\"displaying the filename\" width=\"1073\" height=\"229\" \/><\/a><\/p>\n<h3>Displaying multiple files<\/h3>\n<p>If you want to use the tail command on multiple files, specify the filenames one after the other making sure to separate each filename by a space as shown in the syntax below:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">tail &lt;filename1&gt; &lt;filename2&gt; &lt;filename3&gt;<\/pre>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/displaying-multiple-files.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-112008\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/displaying-multiple-files.webp\" alt=\"displaying multiple files\" width=\"1073\" height=\"346\" \/><\/a><\/p>\n<h3>Redirecting the output of the tail command<\/h3>\n<p>If you want to store the output produced by the tail command in a separate file, use the redirection operator followed by the name of the file as shown below:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">tail &lt;inputfile&gt; &gt; &lt;outputfile&gt;<\/pre>\n<p>You can later check if the file has been created or updated successfully by using the cat command as shown below:<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/redirecting-the-output-of-the-tail-command.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-112009\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/redirecting-the-output-of-the-tail-command.webp\" alt=\"redirecting the output of the tail command\" width=\"1073\" height=\"204\" \/><\/a><\/p>\n<h3>Using linux tail command with data streams<\/h3>\n<p>We already saw earlier that we could also specify data streams as the input of the tail command. However, to do so, we simply can&#8217;t specify them as we have been doing it with regular files. So instead, we pipe the tail command with these data streams. Here are some examples:<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/using-the-tail-command-with-data-streams.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-112010\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/using-the-tail-command-with-data-streams.webp\" alt=\"using the tail command with data streams\" width=\"1073\" height=\"214\" \/><\/a><\/p>\n<h3>Piping the tail command with other shell commands<\/h3>\n<p>As we discussed earlier, we can pipe the tail command with various other commands like wc, grep, sort, and many more. Here are a couple of examples:<\/p>\n<p>In the screenshot below, we have passed the tail command input as the sort command&#8217;s input. Hence the output is sorted alphabetically.<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/piping-the-tail-command-with-other-shell-commands.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-112011\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/piping-the-tail-command-with-other-shell-commands.webp\" alt=\"piping the tail command with other shell commands\" width=\"1073\" height=\"258\" \/><\/a><\/p>\n<p>In the screenshot shown below, we have passed the output of the tail command as the input of the wc (word count) command. Hence, the output is the count information, including the number of lines, words, and characters.<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/passing-the-output-of-the-tail-command-as-the-input-of-the-wc-command.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-112012\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/passing-the-output-of-the-tail-command-as-the-input-of-the-wc-command.webp\" alt=\"passing the output of the tail command as the input of the wc command\" width=\"1073\" height=\"208\" \/><\/a><\/p>\n<p>In the screenshot below, we have passed the tail command output as the grep command&#8217;s input. Hence the output prints the lines with the word &#8220;usr&#8221; in them.<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/passing-the-tail-command-output-as-the-grep-command_s-input.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-112013\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/passing-the-tail-command-output-as-the-grep-command_s-input.webp\" alt=\"passing the tail command output as the grep command_s input\" width=\"1073\" height=\"165\" \/><\/a><\/p>\n<h3>Summary<\/h3>\n<p>As you have seen, the last &#8220;n&#8221; number of lines or data of the given input are printed by the tail command. So you now know what the tail command is, why we use it, the syntax of the command, and also the options used along with it. We have also seen a few practical examples of the command in the Ubuntu terminal.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article, we will learn everything about the tail command in Linux. We will look at what the tail command is, its uses, its syntax, and the options used along with it. In&#46;&#46;&#46;<\/p>\n","protected":false},"author":5,"featured_media":111997,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[35],"tags":[27224],"class_list":["post-111935","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","tag-tail-command-in-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Tail Command in Linux - DataFlair<\/title>\n<meta name=\"description\" content=\"The last &quot;n&quot; number of lines or data of the given input are printed by the tail command in linux. See its syntax, options &amp; output.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/data-flair.training\/blogs\/tail-command-in-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Tail Command in Linux - DataFlair\" \/>\n<meta property=\"og:description\" content=\"The last &quot;n&quot; number of lines or data of the given input are printed by the tail command in linux. See its syntax, options &amp; output.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/data-flair.training\/blogs\/tail-command-in-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"DataFlair\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DataFlairWS\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-11T06:00:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-02-11T07:51:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/tail-command-in-linux.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"DataFlair Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:site\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DataFlair Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Tail Command in Linux - DataFlair","description":"The last \"n\" number of lines or data of the given input are printed by the tail command in linux. See its syntax, options & output.","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:\/\/data-flair.training\/blogs\/tail-command-in-linux\/","og_locale":"en_US","og_type":"article","og_title":"Tail Command in Linux - DataFlair","og_description":"The last \"n\" number of lines or data of the given input are printed by the tail command in linux. See its syntax, options & output.","og_url":"https:\/\/data-flair.training\/blogs\/tail-command-in-linux\/","og_site_name":"DataFlair","article_publisher":"https:\/\/www.facebook.com\/DataFlairWS\/","article_published_time":"2023-02-11T06:00:08+00:00","article_modified_time":"2023-02-11T07:51:10+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/tail-command-in-linux.webp","type":"image\/webp"}],"author":"DataFlair Team","twitter_card":"summary_large_image","twitter_creator":"@DataFlairWS","twitter_site":"@DataFlairWS","twitter_misc":{"Written by":"DataFlair Team","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/data-flair.training\/blogs\/tail-command-in-linux\/#article","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/tail-command-in-linux\/"},"author":{"name":"DataFlair Team","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/7f83c342f5d1632d6f7b4b0b0f447823"},"headline":"Tail Command in Linux","datePublished":"2023-02-11T06:00:08+00:00","dateModified":"2023-02-11T07:51:10+00:00","mainEntityOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/tail-command-in-linux\/"},"wordCount":1197,"commentCount":0,"publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/tail-command-in-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/tail-command-in-linux.webp","keywords":["Tail Command in Linux"],"articleSection":["Linux Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/data-flair.training\/blogs\/tail-command-in-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/data-flair.training\/blogs\/tail-command-in-linux\/","url":"https:\/\/data-flair.training\/blogs\/tail-command-in-linux\/","name":"Tail Command in Linux - DataFlair","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/tail-command-in-linux\/#primaryimage"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/tail-command-in-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/tail-command-in-linux.webp","datePublished":"2023-02-11T06:00:08+00:00","dateModified":"2023-02-11T07:51:10+00:00","description":"The last \"n\" number of lines or data of the given input are printed by the tail command in linux. See its syntax, options & output.","breadcrumb":{"@id":"https:\/\/data-flair.training\/blogs\/tail-command-in-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/data-flair.training\/blogs\/tail-command-in-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/tail-command-in-linux\/#primaryimage","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/tail-command-in-linux.webp","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2023\/02\/tail-command-in-linux.webp","width":1200,"height":628,"caption":"tail command in linux"},{"@type":"BreadcrumbList","@id":"https:\/\/data-flair.training\/blogs\/tail-command-in-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog Home","item":"https:\/\/data-flair.training\/blogs\/"},{"@type":"ListItem","position":2,"name":"Linux Tutorials","item":"https:\/\/data-flair.training\/blogs\/category\/linux\/"},{"@type":"ListItem","position":3,"name":"Tail Command in Linux"}]},{"@type":"WebSite","@id":"https:\/\/data-flair.training\/blogs\/#website","url":"https:\/\/data-flair.training\/blogs\/","name":"DataFlair","description":"Learn Today. Lead Tomorrow.","publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/data-flair.training\/blogs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/data-flair.training\/blogs\/#organization","name":"DataFlair","url":"https:\/\/data-flair.training\/blogs\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","width":106,"height":48,"caption":"DataFlair"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DataFlairWS\/","https:\/\/x.com\/DataFlairWS","https:\/\/www.linkedin.com\/company\/dataflair-web-services-pvt-ltd\/","https:\/\/www.youtube.com\/user\/DataFlairWS"]},{"@type":"Person","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/7f83c342f5d1632d6f7b4b0b0f447823","name":"DataFlair Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4cf3a74600d131330b8c481d519afd1574093ed89f6d3396a95393ad223eb7cd?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4cf3a74600d131330b8c481d519afd1574093ed89f6d3396a95393ad223eb7cd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4cf3a74600d131330b8c481d519afd1574093ed89f6d3396a95393ad223eb7cd?s=96&d=mm&r=g","caption":"DataFlair Team"},"description":"DataFlair Team creates expert-level guides on programming, Java, Python, C++, DSA, AI, ML, data Science, Android, Flutter, MERN, Web Development, and technology. Our goal is to empower learners with easy-to-understand content. Explore our resources for career growth and practical learning.","url":"https:\/\/data-flair.training\/blogs\/author\/dfteam1\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/111935","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/comments?post=111935"}],"version-history":[{"count":4,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/111935\/revisions"}],"predecessor-version":[{"id":112014,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/111935\/revisions\/112014"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media\/111997"}],"wp:attachment":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media?parent=111935"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/categories?post=111935"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/tags?post=111935"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}