On Sat, Apr 21, 2018 at 3:28 AM, 20/20 Lab wrote:
> Going to write my first python program that uses a database. Going to store
> 50-100 rows with 5-10 columns. Which database / module would you advise me
> to use? It's basically going to be processing order status emails for the
> sales staff.
On 04/20/2018 10:28 AM, 20/20 Lab wrote:
Going to write my first python program that uses a database. Going to
store 50-100 rows with 5-10 columns. Which database / module would you
advise me to use? It's basically going to be processing order status
emails for the sales staff. Producing a w
On Fri, Apr 20, 2018 at 1:28 PM, 20/20 Lab wrote:
> Going to write my first python program that uses a database. Going to store
> 50-100 rows with 5-10 columns. Which database / module would you advise me
> to use? It's basically going to be processing order status emails for the
> sales staff.
On Sunday, January 27, 2013 1:57:47 PM UTC-5, twizti...@gmail.com wrote:
> I am in a class and was just looking for different advice. This is the first
> time iv ever tried to do this. That's all that iv taken from two chapters and
> wondering how bad I did. I also like to learn. Thanks for ev
I am in a class and was just looking for different advice. This is the first
time iv ever tried to do this. That's all that iv taken from two chapters and
wondering how bad I did. I also like to learn. Thanks for everyones input
--
http://mail.python.org/mailman/listinfo/python-list
On 01/26/2013 05:26 PM, twiztidtr...@gmail.com wrote:
Hey I'm new to programming and I have been working on calculating miles per
gallon. iv posted below what I have and constructive criticism would be
wonderful. Thanks
A good post for the python-tutor mailing list.
If you want help with a
On Sun, Jan 27, 2013 at 9:26 AM, wrote:
> miles = int(string_miles)
> gas = int(string_gas)
>
> #used to calculate mpg through division
> mpg = miles/gas
>
> print(float(string_miles))
> print(float(string_gas))
> print('Your miles per gallon is', format(mpg,'.2f'))
Welcome aboard!
You turn you