I've also coded in Python and dislike its required indentation. Have to make sure your editor/IDE is set up to not mix spaces and tabs, otherwise you can easily end up with code that looks right, but the Python compiler "sees" it differently.

Though, I started coding in BASIC, then C, so working with a language where indentation is part of the syntax was and still is alien to me.

(Yes, indentation makes code easier to read, but I don't rely on it. Sometimes, I will use a "pretty printer" tool to reformat C code to help me read it. That has actually helped me find some bugs. With Perl, you can use <c>perl -MO=Deparse -c</o> to see how Perl's compiler "sees" your code.)

You mention using PHP. PHP's syntax is closer to Perl's than it is to Python's. That can be both good and bad when moving from PHP to Perl. While Perl will feel less alien, it's somewhat easy to try doing something the "PHP way" while coding Perl (and vice-versa).


In reply to Re^4: Perl in general by RonW
in thread Perl in general by Omega

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.