Re: [python-win32] Newbee question

2007-08-21 Thread Pham, Hien
TED] [mailto:[EMAIL PROTECTED] On Behalf Of RANDALL HOWELL Sent: Monday, August 20, 2007 3:53 PM To: python-win32@python.org Subject: [python-win32] Newbee question I am trying to figure out how to code my stop pay. I get paid 40 cents a stop for the first 22 stops, and $1.40 for stops after that. stops =

Re: [python-win32] Newbee question

2007-08-20 Thread Jim . Vickroy
- Original Message - From: RANDALL HOWELL <[EMAIL PROTECTED]> Date: Monday, August 20, 2007 1:53 pm Subject: [python-win32] Newbee question > I am trying to figure out how to code my stop pay. I > get paid 40 cents a stop for the first 22 stops, and > $1.40 for s

Re: [python-win32] Newbee question

2007-08-20 Thread Roel Schroeven
RANDALL HOWELL schreef: > I am trying to figure out how to code my stop pay. I > get paid 40 cents a stop for the first 22 stops, and > $1.40 for stops after that. > stops = 24 > if stops < 22: > stopPay = stops * .4 > else: > stopPay = stops * 1.4 > print stopPay 33.6 > well thats n

Re: [python-win32] Newbee question

2007-08-20 Thread Michael March
This is a python-win32 specific question? On 8/20/07, RANDALL HOWELL <[EMAIL PROTECTED]> wrote: > > I am trying to figure out how to code my stop pay. I > get paid 40 cents a stop for the first 22 stops, and > $1.40 for stops after that. > stops = 24 > if stops < 22: > stopPay = stops * .4 > e

Re: [python-win32] Newbee question

2007-08-20 Thread Tim Roberts
RANDALL HOWELL wrote: > I am trying to figure out how to code my stop pay. I > get paid 40 cents a stop for the first 22 stops, and > $1.40 for stops after that. > stops = 24 > if stops < 22: > stopPay = stops * .4 > else: > stopPay = stops * 1.4 > print stopPay > 33.6

[python-win32] Newbee question

2007-08-20 Thread RANDALL HOWELL
I am trying to figure out how to code my stop pay. I get paid 40 cents a stop for the first 22 stops, and $1.40 for stops after that. stops = 24 if stops < 22: stopPay = stops * .4 else: stopPay = stops * 1.4 print stopPay >>> 33.6 well thats not how I get paid, I get paid $8.80 for the f