How to Solve attributeerror: ‘list’ object has no ...
https://programmerah.com/how-to-solve-attributeerror-list-object-has...Use numpy or panda np.array Or dataframe has shape, which can be multi-dimensional, while list is one-dimensional and cannot be converted If conversion is needed, list is converted to dataframe. Example: a = [ ['a', 'b', 'c'], ['1', '2', '3'], ['张三', '张三', '张三']] df = pd.DataFrame(a, columns= ['one', 'two', 'three']) print(df)