在Python中,target
函數通常用于多線程編程中,用于指定線程要執行的函數。在使用threading.Thread
創建線程對象時,可以通過target
參數來指定該線程要執行的函數。例如:
import threading
def my_function():
print("This is my function")
thread = threading.Thread(target=my_function)
thread.start()
在上面的例子中,my_function
函數被指定為線程執行的目標函數,當線程啟動時,該函數會被執行。