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 =
- 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
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
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
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
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