最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

手把手帶你了解python多進程,多線程

 更新時間:2021年08月19日 16:44:39   作者:Mr DaYang  
這篇文章主要介紹了python多線程與多進程及其區(qū)別詳解,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

說明

相應(yīng)的學習視頻見鏈接,本文只對重點進行總結(jié)。

請?zhí)砑訄D片描述

請?zhí)砑訄D片描述

多進程

重點(只要看下面代碼的main函數(shù)即可)

1.創(chuàng)建

2.如何開守護進程

3.多進程,開銷大,用for循環(huán)調(diào)用多個進程時,后臺cpu一下就上去了

import time
import multiprocessing
import os
def dance(who,num):
    print("dance父進程:{}".format(os.getppid()))
    for i in range(1,num+1):
        print("進行編號:{}————{}跳舞。。。{}".format(os.getpid(),who,i))
        time.sleep(0.5)
def sing(num):
    print("sing父進程:{}".format(os.getppid()))
    for i in range(1,num+1):
        print("進行編號:{}----唱歌。。。{}".format(os.getpid(),i))
        time.sleep(0.5)
def work():
    for i in range(10):
        print("工作中。。。")
        time.sleep(0.2)
if __name__ == '__main__':
    # print("main主進程{}".format(os.getpid()))
    start= time.time()
    #1 進程的創(chuàng)建與啟動
    # # 1.1創(chuàng)建進程對象,注意dance不能加括號
    # # dance_process = multiprocessing.Process(target=dance)#1.無參數(shù)
    # dance_process=multiprocessing.Process(target=dance,args=("lin",3))#2.以args=元祖方式
    # sing_process = multiprocessing.Process(target=sing,kwargs={"num":3})#3.以kwargs={}字典方式
    # # 1.2啟動進程
    # dance_process.start()
    # sing_process.start()
    #2.默認-主進程和子進程是分開的,主進程只要1s就可以完成,子進程要2s,主進程會等所有子進程執(zhí)行完,再退出
    # 2.1子守護主進程,當主一但完成,子就斷開(如qq一關(guān)閉,所有聊天窗口就沒了).daemon=True
    work_process = multiprocessing.Process(target=work,daemon=True)
    work_process.start()
    time.sleep(1)
    print("主進程完成了!")#主進程和子進程是分開的,主進程只要1s就可以完成,子進程要2s,主進程會等所有子進程執(zhí)行完,再退出
    print("main主進程花費時長:",time.time()-start)
    #

多線程

請?zhí)砑訄D片描述

重點

1.創(chuàng)建

2.守護線程

3.線程安全問題(多人搶票,會搶到同一張)

import time
import os
import threading
def dance(num):
    for i in range(num):
        print("進程編號:{},線程編號:{}————跳舞。。。".format(os.getpid(),threading.current_thread()))
        time.sleep(1)
def sing(count):
    for i in range(count):
        print("進程編號:{},線程編號:{}----唱歌。。。".format(os.getpid(),threading.current_thread()))
        time.sleep(1)
def task():
    time.sleep(1)
    thread=threading.current_thread()
    print(thread)
if __name__ == '__main__':
    # start=time.time()
    # # sing_thread =threading.Thread(target=dance,args=(3,),daemon=True)#設(shè)置成守護主線程
    # sing_thread = threading.Thread(target=dance, args=(3,))
    # dance_thread = threading.Thread(target=sing,kwargs={"count":3})
    #
    # sing_thread.start()
    # dance_thread.start()
    #
    # time.sleep(1)
    # print("進程編號:{}主線程結(jié)束...用時{}".format(os.getpid(),(time.time()-start)))
    for i in range(10):#多線程之間執(zhí)行是無序的,由cpu調(diào)度
        sub_thread = threading.Thread(target=task)
        sub_thread.start()

線程安全

由于線程直接是無序進行的,且他們共享同一個進程的全部資源,所以會產(chǎn)生線程安全問題(比如多人在線搶票,買到同一張)

請?zhí)砑訄D片描述
請?zhí)砑訄D片描述

#下面代碼在沒有l(wèi)ock鎖時,會賣出0票,加上lock就正常

import threading
import time
lock =threading.Lock()
class Sum_tickets:
    def __init__(self,tickets):
        self.tickets=tickets
def window(sum_tickets):
    while True:
        with lock:
            if sum_tickets.tickets>0:
                time.sleep(0.2)
                print(threading.current_thread().name,"取票{}".format(sum_tickets.tickets))
                sum_tickets.tickets-=1
            else:
                break
if __name__ == '__main__':
    sum_tickets=Sum_tickets(10)
    sub_thread1 = threading.Thread(name="窗口1",target=window,args=(sum_tickets,))
    sub_thread2 = threading.Thread(name="窗口2",target=window,args=(sum_tickets,))
    sub_thread1.start()
    sub_thread2.start()

高并發(fā)拷貝(多進程,多線程)

import os
import multiprocessing
import threading
import time
def copy_file(file_name,source_dir,dest_dir):
    source_path = source_dir+"/"+file_name
    dest_path =dest_dir+"/"+file_name
    print("當前進程為:{}".format(os.getpid()))
    with open(source_path,"rb") as source_file:
        with open(dest_path,"wb") as dest_file:
            while True:
                data=source_file.read(1024)
                if data:
                    dest_file.write(data)
                else:
                    break
    pass
if __name__ == '__main__':
    source_dir=r'C:\Users\Administrator\Desktop\注意力'
    dest_dir=r'C:\Users\Administrator\Desktop\test'
    start = time.time()
    try:
        os.mkdir(dest_dir)
    except:
        print("目標文件已存在")
    file_list =os.listdir(source_dir)
    count=0
    #1多進程
    for file_name in file_list:
        count+=1
        print(count)
        sub_processor=multiprocessing.Process(target=copy_file,
                                args=(file_name,source_dir,dest_dir))
        sub_processor.start()
        # time.sleep(20)
    print(time.time()-start)
#這里有主進程和子進程,通過打印可以看出,主進程在創(chuàng)建1,2,3,4,,,21過程中,子進程已有的開始執(zhí)行,也就是說,每個進程是互不影響的
# 9
# 10
# 11
# 12
# 13
# 當前進程為:2936(當主進程創(chuàng)建第13個時,此時,第一個子進程開始工作)
# 14
# 當前進程為:10120
# 當前進程為:10440
# 15
# 當前進程為:9508
    # 2多線程
    # for file_name in file_list:
    #     count += 1
    #     print(count)
    #     sub_thread = threading.Thread(target=copy_file,
    #                                             args=(file_name, source_dir, dest_dir))
    #     sub_thread.start()
    #     # time.sleep(20)
    # print(time.time() - start)

總結(jié)

本篇文章就到這里了,希望能給你帶來幫助,也希望您能夠多多關(guān)注腳本之家的更多內(nèi)容!

相關(guān)文章

  • Python+requests+unittest執(zhí)行接口自動化測試詳情

    Python+requests+unittest執(zhí)行接口自動化測試詳情

    這篇文章主要介紹了Python+requests+unittest執(zhí)行接口自動化測試詳情,文章圍繞主題展開詳細的內(nèi)容介紹,具有一定的參考價值,需要的朋友可以參考一下
    2022-09-09
  • Python中隨機數(shù)函數(shù)的5個核心工具全解析

    Python中隨機數(shù)函數(shù)的5個核心工具全解析

    隨機數(shù)在編程中無處不在,從游戲開發(fā)到機器學習,從密碼學到統(tǒng)計模擬,本文將深入解析5個最實用的隨機數(shù)函數(shù),有需要的小伙伴可以了解下
    2025-09-09
  • Python如何識別銀行卡卡號?

    Python如何識別銀行卡卡號?

    今天給大家?guī)淼氖怯嘘P(guān)Python的相關(guān)知識,文章圍繞著Python如何識別銀行卡卡號展開,文中有非常詳細的代碼示例及介紹,需要的朋友可以參考下
    2021-06-06
  • Python多線程編程(一):threading模塊綜述

    Python多線程編程(一):threading模塊綜述

    這篇文章主要介紹了Python多線程編程(一):threading模塊綜述,本文講解了threading模塊、Thread類、Queue提供的類等內(nèi)容,需要的朋友可以參考下
    2015-04-04
  • python 已知三條邊求三角形的角度案例

    python 已知三條邊求三角形的角度案例

    這篇文章主要介紹了python 已知三條邊求三角形的角度案例,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2020-04-04
  • python對指定目錄下文件進行批量重命名的方法

    python對指定目錄下文件進行批量重命名的方法

    這篇文章主要介紹了python對指定目錄下文件進行批量重命名的方法,涉及Python中replace及join方法的使用技巧,非常具有實用價值,需要的朋友可以參考下
    2015-04-04
  • 詳解Python爬取并下載《電影天堂》3千多部電影

    詳解Python爬取并下載《電影天堂》3千多部電影

    這篇文章主要介紹了Python爬取并下載《電影天堂》3千多部電影,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2019-04-04
  • django中row語法詳解

    django中row語法詳解

    在Django模板中,使用{{ row }}語法可以輸出列表row的所有元素,但是如果你想要輸出列表中的某個元素,需要使用下標來訪問它,這篇文章主要介紹了django中row語法詳解,需要的朋友可以參考下
    2023-06-06
  • python執(zhí)行數(shù)據(jù)庫的查詢操作實例講解

    python執(zhí)行數(shù)據(jù)庫的查詢操作實例講解

    在本篇文章里小編給大家整理了一篇關(guān)于python執(zhí)行數(shù)據(jù)庫的查詢操作實例講解內(nèi)容,有需要的朋友們可以參考學習下。
    2021-10-10
  • python中的列表與元組的使用

    python中的列表與元組的使用

    這篇文章主要介紹了python中的列表與元組的使用,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2019-08-08

最新評論

霍林郭勒市| 邹城市| 蒙城县| 庆元县| 南雄市| 正定县| 台湾省| 万山特区| 枣阳市| 大田县| 石楼县| 衡阳县| 周宁县| 平南县| 工布江达县| 耒阳市| 平塘县| 谢通门县| 崇礼县| 浦城县| 泸西县| 奇台县| 胶州市| 兴山县| 东阿县| 宁乡县| 林口县| 南川市| 博白县| 年辖:市辖区| 长岛县| 将乐县| 隆安县| 桂平市| 新郑市| 大庆市| 凤山市| 宁强县| 桑日县| 砀山县| 兴海县|