<div dir="ltr"><div>Please provide you input on the below questions:</div><div><br></div><div><br></div><div>(a) I was expecting  the string i.e day of week , example Saturday to be written in the file. what Iam I missing in the below program  ?</div><div><br></div><div>Program:</div><div><br></div><div>#!/usr/bin/python<br></div><div><br></div><div>import time</div><div>f = open ('test_2.txt','w+b')</div><div>DAY = time.strftime("%A")</div><div>f.write(DAY)</div><div>f.close()</div><div><br></div><div>Throttling-1# cat test_2.txt</div><div><br></div><div>(b) Iam trying to generate a file in the below format ,</div><div><br></div><div>cluster1# cat test_2.txt<br></div><div><br></div><div><div>Saturday 0:05 0:10</div><div>Saturday 0:10 0:20</div><div>Saturday 0:20 0:30</div><div>Saturday 0:40 0:50</div><div>Saturday 0:60 0:70</div></div><div><br></div><div><div>(a) what is the easiest way to generate the above file fprmat ?</div></div><div><br></div><div>(b) how will I take care that the below format is repeated in the .txt file </div><div>  ( i.e column and row spacing)</div><div> </div><div>    DAY OF THE WEEK  [SPACE] START TIME [ SPACE] ENDTIME{SPACE]</div><div><br></div><div><br></div><div>(c) how do I  add START TIME [ SPACE] ENDTIME{SPACE] columns </div><div>    </div><div><br></div><div><br></div><div>Regards,</div><div>Ganesh</div><div><br></div><div><br></div></div>