如何让pandas打印出数据而不是内存地址?

我目前正在尝试使用pandas,
JSON
Python 3.4打印文本文件中的数据.

当我在朋友的机器上运行Python 2.7上的代码时,它运行正常,但不适用于Python 3.4.

这是我的代码:

import json
import pandas as pd

tweets_data_path = 'tweets.txt'

tweets_data = []
tweets_file = open(tweets_data_path, "r")
for line in tweets_file:
    try:
        tweet = json.loads(line)
        tweets_data.append(tweet)
    except:
        continue

print (len(tweets_data))

tweets = pd.DataFrame()
tweets['text'] = map(lambda tweet: tweet['text'], tweets_data)
tweets['lang'] = map(lambda tweet: tweet['lang'], tweets_data)
tweets['country'] = map(lambda tweet: tweet['place']['country'] if tweet['place'] != None else None, tweets_data)

for i in range(len(tweets_data)):
    print(tweets['text'][i])

它不打印推文数据,而是打印数据的内存位置.例如

<map object at 0x04988050>
<map object at 0x04988050>

如何打印出实际的推文数据呢?

最佳答案 您需要先将其转换为列表.所以只需将map(lambda …)更改为list(map(lambda …))

点赞