我正在使用Twitter的Streaming API,並且我收到了json類型的結果,我通過Python將其導入到mongoDb數據庫中以執行查詢。從查詢結果中,我想出了一個文本文件,其中包含用戶標識和鳴叫消息的文本。形式如下:在python中分割推文,由Twitter Streaming API收到
u'"#Fishing on the #Euphrates": http://t.co/sA1uGz8c2g. The shocking power of normality in #IS #propaganda, from @charliewinter @QuilliamF': 651322435355181056L,
我想隔離文本部分和user_id。理想情況是一個python實現,它將生成一個包含兩個條目的列表。
list[0] = #Fishing on the #Euphrates": http://t.co/sA1uGz8c2g. The shocking power of normality in #IS #propaganda, from @charliewinter @QuilliamF
list[1] = 651322435355181056L
我是Python初學者,我非常感謝任何幫助!我已經嘗試了split()方法,但我無法理解如何將整個句子放在一起並刪除任何標點符號。謝謝!
感謝您的幫助! – idimi