import threading
class Foo (threading.Thread):
def __init__(self,x):
self.__x = x
threading.Thread.__init__(threading.Thread.__init__(self)
def run (self,x):
self):
print str(self.__x)
for x in xrange(20):
Foo(x).start()
Here is a basic threading sample, this will spawn 20 threads, each thread will output it's thread number... run it and observe the order in which they print.
as you have hinted at python threads are implemented through time-slicing, this is how they get the "parallel" effect.
In my example my Foo class extends thread, I then implement the run method, which is where the code that you would like to run in a thread goes. to start the thread you call start() on the thread object, which will automatically invoke your run method...
of course, this is just the vary basics...you will eventually want to learn about semaphores, mutexes, and locks for thread synchronization and message passing...
