<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Dive Deep Into Python Vs Perl Debate &#8211; What Should I Learn Python or Perl?	</title>
	<atom:link href="https://www.tecmint.com/python-vs-perl-debate-what-should-i-learn-python-or-perl/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/python-vs-perl-debate-what-should-i-learn-python-or-perl/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Mon, 23 May 2022 06:36:03 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: winniny		</title>
		<link>https://www.tecmint.com/python-vs-perl-debate-what-should-i-learn-python-or-perl/comment-page-1/#comment-1802939</link>

		<dc:creator><![CDATA[winniny]]></dc:creator>
		<pubDate>Mon, 23 May 2022 06:36:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=22594#comment-1802939</guid>

					<description><![CDATA[I was put off by python&#039;s exact indentation as a block requirement. I love the braces and they make for a clear block marking. It is hard for me to know which code block is aligned with which without exerting the extra effort of counting spaces (which is difficult to do if you don&#039;t have characters immediately above and also don&#039;t use fixed space font - another unnecessary requirement.) 

I want to use a font that is easier on the eyes and saves my eyes from the extra unnecessary effort of counting spaces.

My codes are always clean with braces. I understand that it allows you to create messy blocks, but that is your problem, not the languages.

I don&#039;t like Perl either, I think its syntax is twisted. It seems like whoever wrote Perl gets schadenfreude making things difficult and twisted at the expense of making them readable and clear or a very bad communicator or both.

How are you supposed to read &lt;code&gt;print &quot;hello0909there&quot;=~/\d+/g&lt;/code&gt;

&lt;strong&gt;print hellow0909there&lt;/strong&gt; equal tilde slash digit slash &lt;code&gt;g&lt;/code&gt; and understand it to mean print the string after removing the digits? WTF.]]></description>
			<content:encoded><![CDATA[<p>I was put off by python&#8217;s exact indentation as a block requirement. I love the braces and they make for a clear block marking. It is hard for me to know which code block is aligned with which without exerting the extra effort of counting spaces (which is difficult to do if you don&#8217;t have characters immediately above and also don&#8217;t use fixed space font &#8211; another unnecessary requirement.) </p>
<p>I want to use a font that is easier on the eyes and saves my eyes from the extra unnecessary effort of counting spaces.</p>
<p>My codes are always clean with braces. I understand that it allows you to create messy blocks, but that is your problem, not the languages.</p>
<p>I don&#8217;t like Perl either, I think its syntax is twisted. It seems like whoever wrote Perl gets schadenfreude making things difficult and twisted at the expense of making them readable and clear or a very bad communicator or both.</p>
<p>How are you supposed to read <code>print "hello0909there"=~/\d+/g</code></p>
<p><strong>print hellow0909there</strong> equal tilde slash digit slash <code>g</code> and understand it to mean print the string after removing the digits? WTF.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: JensE		</title>
		<link>https://www.tecmint.com/python-vs-perl-debate-what-should-i-learn-python-or-perl/comment-page-1/#comment-1591606</link>

		<dc:creator><![CDATA[JensE]]></dc:creator>
		<pubDate>Mon, 20 Sep 2021 20:50:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=22594#comment-1591606</guid>

					<description><![CDATA[After this long debate, I will say try to learn C and after mastering it, use whatever you please. ;o)]]></description>
			<content:encoded><![CDATA[<p>After this long debate, I will say try to learn C and after mastering it, use whatever you please. ;o)</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Bob Newell		</title>
		<link>https://www.tecmint.com/python-vs-perl-debate-what-should-i-learn-python-or-perl/comment-page-1/#comment-1591124</link>

		<dc:creator><![CDATA[Bob Newell]]></dc:creator>
		<pubDate>Sun, 19 Sep 2021 02:07:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=22594#comment-1591124</guid>

					<description><![CDATA[The code examples in places leave off the &lt;code&gt;;&lt;/code&gt; at the end of Perl statements.

Also, the Python examples don&#039;t have proper indenting.

Not impressed.]]></description>
			<content:encoded><![CDATA[<p>The code examples in places leave off the <code>;</code> at the end of Perl statements.</p>
<p>Also, the Python examples don&#8217;t have proper indenting.</p>
<p>Not impressed.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: JensE		</title>
		<link>https://www.tecmint.com/python-vs-perl-debate-what-should-i-learn-python-or-perl/comment-page-1/#comment-1480041</link>

		<dc:creator><![CDATA[JensE]]></dc:creator>
		<pubDate>Fri, 23 Apr 2021 12:36:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=22594#comment-1480041</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/python-vs-perl-debate-what-should-i-learn-python-or-perl/comment-page-1/#comment-1478740&quot;&gt;simlev&lt;/a&gt;.

Easier to read, really?! They both need you to learn regex in the first place.

But even if it is easier to read you have to

1. Import the regex lib and
2. Those Python regexes are not even remotely as powerful as the Perl ones.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/python-vs-perl-debate-what-should-i-learn-python-or-perl/comment-page-1/#comment-1478740">simlev</a>.</p>
<p>Easier to read, really?! They both need you to learn regex in the first place.</p>
<p>But even if it is easier to read you have to</p>
<p>1. Import the regex lib and<br />
2. Those Python regexes are not even remotely as powerful as the Perl ones.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: simlev		</title>
		<link>https://www.tecmint.com/python-vs-perl-debate-what-should-i-learn-python-or-perl/comment-page-1/#comment-1478740</link>

		<dc:creator><![CDATA[simlev]]></dc:creator>
		<pubDate>Tue, 20 Apr 2021 11:07:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=22594#comment-1478740</guid>

					<description><![CDATA[Python:
&lt;pre&gt;
    print re.findall(&#039;\d+&#039;,&#039;hello0909there&#039;)
&lt;/pre&gt;
Perl:
&lt;pre&gt;
    print &quot;hello0909there&quot;=~/\d+/g
&lt;/pre&gt;
The first is plain to read and understand, and there is probably just one way to make it right.
The second is harder to read and error-prone, requiring some knowledge of what&#039;s going on.

I find Perl more fun and interesting to write because it gives you so many ways to do things, each with its own subtle differences and implications. I feel more proud when I write a concise expression, where each character has been thought over than with writing code that tastes plain and foreseeable. On the other hand, I would prefer the latter if the code needed to be shared because I&#039;d feel like I&#039;d be pouring less of my personality into it.]]></description>
			<content:encoded><![CDATA[<p>Python:</p>
<pre>
    print re.findall('\d+','hello0909there')
</pre>
<p>Perl:</p>
<pre>
    print "hello0909there"=~/\d+/g
</pre>
<p>The first is plain to read and understand, and there is probably just one way to make it right.<br />
The second is harder to read and error-prone, requiring some knowledge of what&#8217;s going on.</p>
<p>I find Perl more fun and interesting to write because it gives you so many ways to do things, each with its own subtle differences and implications. I feel more proud when I write a concise expression, where each character has been thought over than with writing code that tastes plain and foreseeable. On the other hand, I would prefer the latter if the code needed to be shared because I&#8217;d feel like I&#8217;d be pouring less of my personality into it.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
