close

def t20():
    import os #匯入os模組
    f={2330:'台積電',2303:'聯電',4906:'正文'} #建立股票公司代號、名稱的字典
    if not os.path.exists('stock'): #如果在根目錄底下沒有stock這個資料夾,就建立,若有,則報錯。
        os.mkdir('stock')
        print('stock資料夾已建立')
    else:
        print('stock資料夾已存在,無法再次建立')


    for k,v in f.items():  #依照字典內容,在stock資料夾底下建立其他的子資料夾
        if not os.path.exists("./stock/"+str(k)+"_"+v):
            os.mkdir("./stock/"+str(k)+"_"+v)
            print("已建立"+v+"資料夾")
        else:
            print(str(v)+"資料夾已存在,無法再次建立")

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 吳盈霖 的頭像
    吳盈霖

    吳盈霖的部落格

    吳盈霖 發表在 痞客邦 留言(0) 人氣()