Re: Question on time module

2008-06-27 Thread subhabrata . iisc
This problem is solved with time.gmtime [EMAIL PROTECTED] wrote: > Dear Members of the group, > I have one function > def sum1(n): > a1=5 > a2=6 > a3=a1+a2 > a4=a3+8 > print "The First sum is" > print a3 > print "The Second sum is" > print a4 > > Now

Question on time module

2008-06-26 Thread subhabrata . iisc
Dear Members of the group, I have one function def sum1(n): a1=5 a2=6 a3=a1+a2 a4=a3+8 print "The First sum is" print a3 print "The Second sum is" print a4 Now, I want to do it in a way, a4 is calculated after a given time interval of a3 -this is eas