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

詳解Python實現(xiàn)字典合并的四種方法

 更新時間:2022年03月24日 17:01:29   作者:天天開心學(xué)編程  
這篇文章主要為大家詳細介紹了Python的合并字典的四種方法,具有一定的參考價值,感興趣的小伙伴們可以參考一下,希望能夠給你帶來幫助

1、用for循環(huán)把一個字典合并到另一個字典

把a字典合并到b字典中,相當(dāng)于用for循環(huán)遍歷a字典,然后取出a字典的鍵值對,放進b字典,這種方法python中進行了簡化,封裝成b.update(a)實現(xiàn)

>>> a = {'device_type': 'cisco_ios', 'username': 'admin', 'password': 'cisco'}
>>> b = {'name': 'r1'}
>>> for k, v in a.items():
...     b[k] =  v
... 
>>> a
{'device_type': 'cisco_ios', 'username': 'admin', 'password': 'cisco'}
>>> b
{'name': 'r1', 'device_type': 'cisco_ios', 'username': 'admin', 'password': 'cisco'}

2、用dict(b, **a)方法構(gòu)造一個新字典

使用**a的方法,可以快速的打開字典a的數(shù)據(jù),可以使用這個方法來構(gòu)造一個新的字典

>>> a = {'device_type': 'cisco_ios', 'username': 'admin', 'password': 'cisco'}
>>> b = {'name': 'r1'}
>>> c = dict(b, **a)
>>> c
{'name': 'r1', 'device_type': 'cisco_ios', 'username': 'admin', 'password': 'cisco'}
>>> a
{'device_type': 'cisco_ios', 'username': 'admin', 'password': 'cisco'}
>>> b
{'name': 'r1'}

3、用b.update(a)的方法,更新字典

>>> a = {'device_type': 'cisco_ios', 'username': 'admin', 'password': 'cisco'}
>>> b = {'name': 'r1'}
>>> b.update(a)
>>> a
{'device_type': 'cisco_ios', 'username': 'admin', 'password': 'cisco'}
>>> b
{'name': 'r1', 'device_type': 'cisco_ios', 'username': 'admin', 'password': 'cisco'}

4、把字典轉(zhuǎn)換成列表合并后,再轉(zhuǎn)換成字典

利用a.items()的方法把字典拆分成鍵值對元組,然后強制轉(zhuǎn)換成列表,合并list(a.items())和list(b.items()),并使用dict把合并后的列表轉(zhuǎn)換成一個新字典

(1)利用a.items()、b.items()把a、b兩個字典轉(zhuǎn)換成元組鍵值對列表

>>> a = {'device_type': 'cisco_ios', 'username': 'admin', 'password': 'cisco'}
>>> b = {'name': 'r1'}
>>> a.items()
dict_items([('device_type', 'cisco_ios'), ('username', 'admin'), ('password', 'cisco')])
>>> b.items()
dict_items([('name', 'r1')])
>>> list(a.items())
[('device_type', 'cisco_ios'), ('username', 'admin'), ('password', 'cisco')]
>>> list(b.items())
[('name', 'r1')]

(2)合并列表并且把合并后的列表轉(zhuǎn)換成字典

>>> dict(list(a.items()) + list(b.items()))
{'device_type': 'cisco_ios', 'username': 'admin', 'password': 'cisco', 'name': 'r1'}

5、實例,netmiko使用json格式的數(shù)據(jù)進行自動化操作

(1)json格式的處理

#! /usr/bin/env python3
# _*_ coding: utf-8 _*_
import json
?
def creat_net_device_info(net_name, device, hostname, user, passwd):
   dict_device_info = {
                       'device_type': device,
                       'ip': hostname, 
                       'username': user, 
                       'password': passwd
                      }
   dict_connection = {'connect': dict_device_info}
   dict_net_name = {'name': net_name}
   data = dict(dict_net_name, **dict_connection)
   data = json.dumps(data)
   return print(f'生成的json列表如下:\n{data}')
?
?
if __name__ == '__main__':
   net_name = input('輸入網(wǎng)絡(luò)設(shè)備名稱R1或者SW1的形式:')
   device = input('輸入設(shè)備類型cisco_ios/huawei: ')
   hostname = input('輸入管理IP地址: ')
   user = input('輸入設(shè)備登錄用戶名: ')
   passwd = input('輸入設(shè)備密碼: ')
   json_founc = creat_net_device_info
   json_founc(net_name, device, hostname, user, passwd)

(2)json格式的設(shè)備信息列表

[
  {
       "name": "R1", 
       "connect":{
           "device_type": "cisco_ios",
           "ip": "192.168.47.10",
           "username": "admin",
           "password": "cisco"
      }
  },
  {
       "name": "R2", 
       "connect":{
           "device_type": "cisco_ios",
           "ip": "192.168.47.20",
           "username": "admin",
           "password": "cisco"
      }
  },
  {
       "name": "R3", 
       "connect":{
           "device_type": "cisco_ios",
           "ip": "192.168.47.30",
           "username": "admin",
           "password": "cisco"
      }        
  },
  {
       "name": "R4", 
       "connect":{
           "device_type": "cisco_ios",
           "ip": "192.168.47.40",
           "username": "admin",
           "password": "cisco"
      }    
  },
  {
       "name": "R5", 
       "connect":{
           "device_type": "cisco_ios",
           "ip": "192.168.47.50",
           "username": "admin",
           "password": "cisco"
      }
  }
]

(3)netmiko讀取json類型信息示例

#! /usr/bin/env python3
# _*_ coding: utf-8 _*_
?
import os
import sys
import json
from datetime import datetime
from netmiko import ConnectHandler
from concurrent.futures import ThreadPoolExecutor as Pool
?
def write_config_file(filename, config_list):
   with open(filename, 'w+') as f:
       for config in config_list:
           f.write(config)
?
def auto_config(net_dev_info, config_file):
   ssh_client = ConnectHandler(**net_dev_info['connect']) #把json格式的字典傳入
   hostname = net_dev_info['name']
   hostips = net_dev_info['connect']
   hostip = hostips['ip']
   print('login ' + hostname + ' success !')
   output = ssh_client.send_config_from_file(config_file)
   file_name = f'{hostname} + {hostip}.txt'
   print(output)
   write_config_file(file_name, output)
   
def main(net_info_file_path, net_eveng_config_path):
   this_time = datetime.now()
   this_time = this_time.strftime('%F %H-%M-%S')
   foldername = this_time
   old_folder_name = os.path.exists(foldername)
   if old_folder_name == True:
       print('文件夾名字沖突,程序終止\n')
       sys.exit()
   else:
       os.mkdir(foldername)
       print(f'正在創(chuàng)建目錄 {foldername}')
       os.chdir(foldername)
       print(f'進入目錄 {foldername}')
?
   net_configs = []
?
   with open(net_info_file_path, 'r') as f:
       devices = json.load(f) #載入一個json格式的列表,json.load必須傳入一個別表
?
   with open(net_eveng_config_path, 'r') as config_path_list:
       for config_path in config_path_list:
           config_path = config_path.strip()
           net_configs.append(config_path)
?
   with Pool(max_workers=6) as t:
       for device, net_config in zip(devices, net_configs):
           task = t.submit(auto_config, device, net_config)
       print(task.result())    
?
?
if __name__ == '__main__':
   #net_info_file_path = '~/net_dev_info.json'
   #net_eveng_config_path = '~/eve_config_path.txt'
   net_info_file_path = input('請輸入設(shè)備json_inventory文件路徑: ')
   net_eveng_config_path = input('請輸入記錄設(shè)備config路徑的配置文件路徑: ')
   main(net_info_file_path, net_eveng_config_path)

到此這篇關(guān)于詳解Python實現(xiàn)字典合并的四種方法的文章就介紹到這了,更多相關(guān)Python字典合并內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

最新評論

广安市| 青浦区| 吉林省| 阳江市| 马公市| 山西省| 四平市| 莎车县| 虹口区| 基隆市| 奉化市| 咸丰县| 高淳县| 进贤县| 鲁甸县| 石楼县| 健康| 威海市| 宁波市| 炉霍县| 马关县| 砚山县| 中卫市| 武隆县| 临沧市| 丹东市| 达孜县| 昭苏县| 龙游县| 和平县| 宝丰县| 随州市| 凤翔县| 稻城县| 藁城市| 灵宝市| 绥中县| 共和县| 安吉县| 南岸区| 祁连县|