session = ConnectHandler(device_type=os, ip=ipaddr, username=username, password=pswd, banner_timeout=300) print("connecting to "+ ipaddr + os) print ("---- Getting configuration from {}-----------".format(ipaddr)) 怎么将os= huawei的情况进行if语句
时间: 2023-11-28 16:04:24 浏览: 84
HW.py_华为交换机、路由器_
你可以使用以下代码将 `os` 变量进行判断,以便根据不同的设备类型执行不同的操作:
```
if os == 'huawei':
session = ConnectHandler(device_type=os,
ip=ipaddr,
username=username,
password=pswd,
banner_timeout=300)
print("connecting to " + ipaddr + os)
print("---- Getting configuration from {}-----------".format(ipaddr))
else:
# handle other device types
pass
```
在 else 语句中,你可以处理其他设备类型的情况。
阅读全文