Steven D'Aprano wrote:
>On Wed, 24 Mar 2010 21:14:23 -0700, Tim Roberts wrote:
>
>> Jimbo wrote:
>>>
>>>class stock:
>>>code = ""
>>>purchasePrice= 0
>>>purchaseQuantity = 0
>>>price= [] # list of recent prices
>>>recentBid= [] # list of
Steven D'Aprano a écrit :
On Wed, 24 Mar 2010 21:14:23 -0700, Tim Roberts wrote:
Jimbo wrote:
class stock:
code = ""
purchasePrice= 0
purchaseQuantity = 0
price= [] # list of recent prices
recentBid= [] # list of recent bids for stock
On Wed, 24 Mar 2010 21:14:23 -0700, Tim Roberts wrote:
> Jimbo wrote:
>>
>>class stock:
>>code = ""
>>purchasePrice= 0
>>purchaseQuantity = 0
>>price= [] # list of recent prices
>>recentBid= [] # list of recent bids for stock
>>recent
Jimbo wrote:
>
>class stock:
>code = ""
>purchasePrice= 0
>purchaseQuantity = 0
>price= [] # list of recent prices
>recentBid= [] # list of recent bids for stock
>recentOffer = [] # list of recent offers for stock
>stockVol
Jimbo wrote:
I have made a Python App(really script) that will check a stocks
current values from a website & save that data to a SQLite 3 database.
I am looking for any suggestions & criticisms on what I should do
better or anything at all but mainly in these areas:
[QUOTE]
- Correct Python Lay
On Tue, Mar 23, 2010 at 5:05 PM, Jimbo wrote:
> I have made a Python App(really script) that will check a stocks
> current values from a website & save that data to a SQLite 3 database.
>
> I am looking for any suggestions & criticisms on what I should do
> better or anything at all but mainly in
I have made a Python App(really script) that will check a stocks
current values from a website & save that data to a SQLite 3 database.
I am looking for any suggestions & criticisms on what I should do
better or anything at all but mainly in these areas:
[QUOTE]
- Correct Python Layout of code
- C