Hi stackoverflow users,
my question is quite straigtforward:
How can I use a variable in the name of another command?
My Script looks roughly like this:
    for i in range(1, face_recognition_core_count+1):
    face_finder+i = multiprocessing.Process(target=find_faces, args=(total_frame_count, i))
    face_finder+i.start()
    face_finder+i.join()
 
    