in reply to writting data to .csv file in perl

Compare the output of these two lines:

print "'\t','\t','\t','\t',x,y\n"; print "\t\t\t\tx,y\n";

Replies are listed 'Best First'.
Re^2: writting data to .csv file in perl
by Perlseeker_1 (Acolyte) on Jun 25, 2013 at 16:02 UTC
    Hi Monks,

    I can see the below difference

    ',' ',' ',' ',x,y + x,y

    but when i print the same output on csv file

    i dont see any differences

    ',' ',' ',' ',x,y x,y

    output expected on csv fiile

    file 24 file1 25 file2 26 file2 28

    Any input please