import threading
def f1(x):
    print(x)
f1(7)
#t = threading.Thread(target=f1,args=(3,))
t = threading.Thread(target=f1,args=[3])
t.start()

