thanks a lot my brother you told the real truth please make more videos like this. love from India .
@erfelipe3 жыл бұрын
Great class!
@Alexey-gp7vc2 жыл бұрын
thank you, that's very graphic
@chandrashekharsahani64823 жыл бұрын
bro please can solve this ? create a python program to demonstrate Multi Processing capability. the program must create 2 processes(not threads). these processes must be able to communicate/share data with each other. they must have the following properties. Process properties 1) Must take in their name (which can be any string ) as function argument when created. 2) Must take an integer nLoops as function argument. 3) The processes must loop nLoops times. For each iteration, one of the processes must share its iteration indes (Eg. 0 for first iteration, 1 for second iteration, nLoops for last iteration etc. ) with the second process. The second process should receive all the information sent from the forst process and print them.