import threaddef thread(stuff): print "I'm a thread!" print stuffthread.start_new_thread(thread, ('Argument'))