I have written a function that has 3 parameters as shown in the code. I want to run the function 7 times with different parameter values.
def abc(Link,rangeTo,filename):
do_something
multiprocessing.process(target=abc('www.google.com',7265,'abc.csv')).start()
multiprocessing.process(target=abc('www.google2.com',765,'abc1.csv')).start()
multiprocessing.process(target=abc('www.google3.com',726,'abc2.csv')).start()
when I execute the above code it does not start 3 calls at the same time. It works like completing the 1st call then 2nd and so on. But I want it should start the all calls at the same time.