in reply to Re^5: Perl VS Python
in thread Perl VS Python

Huh?

In Perl you might write

printf("Hello %s! Today is %s!", 'John', 'Thursday');

At least try to make an apples to apples comparison.

Replies are listed 'Best First'.
Re^7: Perl VS Python
by Anonymous Monk on Oct 19, 2009 at 23:56 UTC
    Myopic much? named sprintf compared to named sprintf
    print "Hello $name! Today is $day!\n"

      Just trying to stay in the same fruit category as the original Python example :)