uot;Yeah!"
while 1:
display()
time.sleep(interval)
--
Sincerely,
Eugene Antimirov
PortaOne, Inc., SIP Engineer
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
("insert into animals values('lion','cub')")
> cursor.execute("insert into animals values('goat','lamb')")
> cursor.execute("select * from animals")
> print cursor.fetchall()
>
>
> Rgds
> Kavitha
>
&
Eugene Antimirov wrote:
> You've probably missed cursor.commit() ;)
Sorry, my bad:
conn.commit() is correct one AFAIR.
--
Sincerely,
Eugene Antimirov
PortaOne, Inc., SIP Support Engineer
[EMAIL PROTECTED]
* For further Billing and Technical information:
=> Please visit our w
Marcpp wrote:
> Any idea to work with windows shared folders?
> Which library is needed to execute console comands?
>
Don't you want to look at fusesmb first and then work with windows files
and dirs as well as with any others.
--
Sincerely,
Eugene Antimirov
PortaOne, Inc
stef wrote:
> # method 2
> def chunk_plot(self, list):
> for i in range ( len(list) ):
> do something
And one note more. Just to be more pythonic you shouldn't use form
range(len(blabla)). Instead use:
for i in list:
blabla...
--