PROBLEM
I have 2 functions in my discord bot which takes no argument and calls another functions internally and finally returns a list. I dont know how to run both the functions at the same time which will help me make the overall feature a bit faster as these two function are the major time taking functions.
CODE
img = cv.imread('card.png')
def func1()
#some code of cropping the above image as per my need
char_list = [ocr(img1), ocr(img2), ocr(img3)] # these are the cropped 3 images and the ocr() function extracts the text from them
return char_list
def func2()
#some code of cropping the above image as per my need
series_list = [ocr(img1), ocr(img2), ocr(img3)] # these are the cropped 3 images and the ocr() function extracts the text from them
return series_list