python multiprocessing

Поделиться
HTML-код
  • Опубликовано: 2 янв 2025

Комментарии • 4

  • @kishanbhargav7655
    @kishanbhargav7655 2 года назад

    thanks a lot my brother you told the real truth please make more videos like this.
    love from India .

  • @erfelipe
    @erfelipe 3 года назад +1

    Great class!

  • @Alexey-gp7vc
    @Alexey-gp7vc 2 года назад

    thank you, that's very graphic

  • @chandrashekharsahani6482
    @chandrashekharsahani6482 3 года назад

    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.