Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
519 views
in Technique[技术] by (71.8m points)

python - AttributeError: 'NoneType' object has no attribute 'get' while checking none data in list of dictionaries

i am trying to check null fields in dataframe but getting error while trying to compare.

                if data[D]['obj1']['obj2'] is None:

But getting this error AttributeError: 'NoneType' object has no attribute 'get'

data is a list of dictionaries.

"u""obj1":{
     "u""obj2":"None" }

this is how json looks like.

I need to check if that field is none and replace it with empty string.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...