Hi,
I have a code written in Windows creating the spreadsheet as ouput.I need to make use of the same code in UNIX to create spreadsheet or other format.
Is there any preprocessor step available in Python?
Similar to C/C++
#ifdef WIN /*Windows*/
/*Call Windows Snippet of code*/
#elseif UNIX-AIX
/*Call UNIX-AIX Snippet of code*/
#elseif
/* Other OS Support
Thanks
PSB
I have a code written in Windows creating the spreadsheet as ouput.I need to make use of the same code in UNIX to create spreadsheet or other format.
Is there any preprocessor step available in Python?
Similar to C/C++
#ifdef WIN /*Windows*/
/*Call Windows Snippet of code*/
#elseif UNIX-AIX
/*Call UNIX-AIX Snippet of code*/
#elseif
/* Other OS Support
Thanks
PSB
Comment