Skip to content Skip to sidebar Skip to footer

Formatting Output Of Multithreading Output

from multiprocessing import Pool from functools import partial def run_test_function(x, fun_arg2, fun_arg3, fun_arg4): # this is an example for a in fun_arg2: for

Solution 1:

It happens sometimes when CR/LF interpretation is broken. You can always put a line in end of your code :

import os
os.system('stty sane')

Post a Comment for "Formatting Output Of Multithreading Output"