ut I can't find the
problem. Any comments, suggestions? Or could someone please tell me if there
is something wrong with my code?
--
Necmettin Begiter
Blog: http://begiter.blogspot.com/feeds/posts/default
___
Tutor maillist - Tutor@
On Tuesday 17 April 2007 14:42:50 [EMAIL PROTECTED] wrote:
> >>> range(-10, -100, -30)
>
> [-10, -40, -70]
>
> How come it prints on -40 or -70.
>
> Does -70 come from -70 -> -100?
>
from -10 to -100 (excluding -100)
-10-30 = -40
-40-30= -70
___
Tutor mai
05 Şub 2007 Pts 04:56 tarihinde, Wong Vincent şunları yazmıştı:
> Dear tutors,
> Hi. Does python provide any API to pause, stop or reset the virtual
> machine? Am currently building an application which will run a script file
> using os.popen(). In order to allow user to run, stop and pause th
05 Şub 2007 Pts 04:58 tarihinde, Gizmo şunları yazmıştı:
> Hello
> I have a whole directory tree of RAR files that I wish to extract as a
> batch job. In my real script I've used os.walk() and os.spawn*() but for
> demonstration purposes have a look at the code below
>
> >>> import os
> >>> proces