这是我在 jsonl 中的数据结构
"content": "Not yall gassing up a gay boy with no rhythm", "place": {"_type": "snscrape.modules.twitter.Place", "fullName": "Manhattan, NY", "name": "Manhattan", "type": "city", "country": "United States", "countryCode": "US"}
我尝试使用此代码从 place 列中选择 countryCode
country_df = test_df.loc[test_df['place'].notnull(), ['content', 'place']]
countrycode_df = country_df["place"].loc["countryCode"]
但它给了我这个错误
键错误:“国家代码”
我该如何解决?
我尝试过这种方法,但它不适合我的情况