错误描述:TypeError: can only concatenate str (not "int") to str
原因:在python中拼接字符串较为特殊,整型变量与字符串不能直接拼接,需要采用通过(%)操作符拼接
解决办法:
例如:
错误的:
alarm_content += host_ip + "的cpu " + cpu_info + "超过了阈值" + threshold_cpu
修改为:
alarm_content += "%s" % host_ip + "的cpu " + "%d" % cpu_info + "超过了阈值" + "%d" % threshold_cpu
(注:第32次发文,如有错误和疑问,欢迎在评论区指出!)
——2022.2.14