header定义的内容:
返回类型为:字典
在程序中读取header后,类型变成了tuple:
所以会报错:
分析:
header返回类型没有问题
仔细检查发现:
因为无中生有多了两个逗号,所以dict被转成了tuple
去掉即可
Python3-接口自动化-12- header定义为字典格式,但是报错:for header in headers.items(): AttributeError: 'tuple' object has no attribute 'items'
原文:https://www.cnblogs.com/chushujin/p/14448381.html