Python3-接口自动化-12- header定义为字典格式,但是报错:for header in headers.items(): AttributeError: 'tuple'

header定义的内容:

Python3-接口自动化-12- header定义为字典格式,但是报错:for header in headers.items(): AttributeError: 'tuple'

 

 返回类型为:字典

在程序中读取header后,类型变成了tuple:

Python3-接口自动化-12- header定义为字典格式,但是报错:for header in headers.items(): AttributeError: 'tuple'

 

 

 

 

 所以会报错:

Python3-接口自动化-12- header定义为字典格式,但是报错:for header in headers.items(): AttributeError: 'tuple'

 

分析:

header返回类型没有问题 

仔细检查发现:

Python3-接口自动化-12- header定义为字典格式,但是报错:for header in headers.items(): AttributeError: 'tuple'

 

 因为无中生有多了两个逗号,所以dict被转成了tuple

去掉即可

上一篇:list 和 tuple——python基础学习


下一篇:python3 切片操作(转载)