Why?

If you give either interpreter a script in the other language you end up with a syntax error right at the start and especially in case of a Perl script fed to python, the error is RIGHT at the use strict;. Do you really spend time reviewing the script to find out why do you get

File "d:\temp\findInFiles.pl", line 1 use strict; ^^^^^^ SyntaxError: invalid syntax

Even if you did find a way to hide the rest of the python script from Perl and getting it to print that message AND a way to hide the rest of the Perl script from python and getting it to print the opposite message, there is no chance you'd consistently include that thing even in your own scripts.

Besides on a well set system, you do not need to specify the interpreter. The right one is used either based on the shebang or the file extension.

Jenda
1984 was supposed to be a warning,
not a manual!


In reply to Re: did you mean python by Jenda
in thread did you mean python by Anonymous Monk

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.