I looked at other StackExchange threads related to this topic but seems I need further assistant in understanding.
Please take look at the following scenario? and do explain which method to be used and why?
I have written the Python Code already which Loads the folder and Extracts the file.txt then calls the function "File_Processing" which processes the individual file and then saves the plot after plotting x and y. Thus it takes 20 min per 100 files. I have several folders containing 3000 files per folder.
Now my question is which method to be used, multiprocessing or multitasking and why?
Check out
multiprocessing
, it is a standard module: https://docs.python.org/3/library/multiprocessing.htmlWhat you need is almost exactly as in the most basic example:
Do not forget the
if __name__ == "__main__":
, I remember not having it may lead to some weird bugs.