from threading import Thread
def f1 (L) :
	for i in L:
		print ( i )
thread.startnewthread( f1 , ( '44444444' , ) )
thread.startnewthread( f1 , ( '222222222' , ) )
