[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 = 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
[python-win32] How can I run python from within Excel ?
!Thanks in advance, Randall__Do You Yahoo!?Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com ___ Python-win32 mailing list [email protected] http
