AttributeError: ‘list’ object has no attribute ‘decode’

find the error line

Place the code at:

name['list_name'].decode('utf-8')

Change to:

(s.decode('utf-8') for s in name['list_name'])

Guess you like

Origin blog.csdn.net/m0_72663423/article/details/128660690