in reply to Re: Python tricks
in thread Python tricks

Your solution is better, more perlish.

Replies are listed 'Best First'.
Re^3: Python tricks
by xiaoyafeng (Deacon) on Dec 19, 2018 at 07:21 UTC

    No, it's not perlish and please don't use it any more.

    $# is long deprecated, and will throw exception when using on 5.30 soon.

    Thank syphilis for pointing out my misunderstanding!





    I am trying to improve my English skills, if you see a mistake please feel free to reply or /msg me a correction

      $# is long deprecated

      It's true that the special perl variable $# is deprecated, but hippo is using "$#" in a different, quite allowable, context:
      C:\_32>perl -le "print $#;" $# is no longer supported as of Perl 5.30 at -e line 1. C:\_32>perl -wle "@x=(7,8,9);print $#x;" 2

      Cheers,
      Rob