第二个问题只是一般的语法问题。我已经看到在Python中使用相同的变量名时使用了“ + =”(主要用于netmiko脚本,但我认为它显然已在其他Python脚本中使用过),例如:
output = net_connect.send_command(cmd, expect_string=r'Destination filename')
output += net_connect.send_command('\n', expect_string=r'#')
....该脚本的其余部分未导入,但我想知道“ + =“实际上在这里做什么,因为在我看来,这和做起来没什么不同:
output = net_connect.send_command(cmd, expect_string=r'Destination filename')
output = net_connect.send_command('\n', expect_string=r'#')
任何人都可以对此有所了解吗?
感谢大家像往常一样!