Re: A little help with time calculations

2005-10-19 Thread iminal
thanks -- http://mail.python.org/mailman/listinfo/python-list

Re: A little help with time calculations

2005-10-19 Thread Steve Holden
iminal wrote: > what i have so far is : > > # Get values needed to make time calculations > CT = input("input your chronometer time (ex. 07:21:46): ") > CE = input("input your chronometer correction (ex. 00:01:32): ") > CEfastslow = raw_input("is your chronometer correction fast or

Re: A little help with time calculations

2005-10-18 Thread iminal
what i have so far is : # Get values needed to make time calculations CT = input("input your chronometer time (ex. 07:21:46): ") CE = input("input your chronometer correction (ex. 00:01:32): ") CEfastslow = raw_input("is your chronometer correction fast or slow: ") #decide eit

Re: A little help with time calculations

2005-10-18 Thread Steve Holden
iminal wrote: > I am trying to make a very simple program and am very new to the whole > programming thing. my program is supposed to ask a user for any time in > the for format XX:XX:XX and then ask for a time corrrection to add or > subtract to this. my only problem is that once the user inputs t

Re: A little help with time calculations

2005-10-18 Thread Diez B. Roggisch
iminal wrote: > I am trying to make a very simple program and am very new to the whole > programming thing. my program is supposed to ask a user for any time in > the for format XX:XX:XX and then ask for a time corrrection to add or > subtract to this. my only problem is that once the user inputs t

A little help with time calculations

2005-10-18 Thread iminal
I am trying to make a very simple program and am very new to the whole programming thing. my program is supposed to ask a user for any time in the for format XX:XX:XX and then ask for a time corrrection to add or subtract to this. my only problem is that once the user inputs the time and the correc