I am trying to threading to call a function with args, but the Syntax I use says I am using to many args... but 2 are needed to are given... so why?
import threading
import time
class Baab():
    def finc(phrase):
        time.sleep(3)
        print(phrase)
    def fenc():
        time.sleep("last")
    def fanc(ophrase):
        print(ophrase)
def func(phrase, ophrase):
    b = Baab()
    b.fanc(ophrase)
    b.finc(phrase)
    b.fenc()
th = threading.Thread(target=func, args=("baba", "lol"))
th.start()
time.sleep(1)
print("second")   
 
    