print type(('a')), type(('a', 'b'))
import thread, time def some_function(text): print "Text: ", text thread.start_new_thread(some_function, ('qwe',)) time.sleep(3)