2013-04-04 105 views
0

感謝這個網站的好意,我已經安裝了2.7/setuptools/feedparser,沒有問題..我已經知道了feedparser,它沒有問題。(Python Newb)寫入文件打印什麼?

我一直在閱讀關於如何通過python寫入文件(文本)的教程,我已經適度成功地做到了這一點與文本..但是,當我嘗試編寫一個數據列表它會一切扭曲我並沒有做任何事情。

ORIGINAL:

import feedparser 

result = feedparser.parse('https://gdata.youtube.com/feeds/api/videos/Ej4_G-E1cAM/comments') 
for entry in result.entries: 
print entry.author 

我嘗試:

import feedparser 

result = feedparser.parse('https://gdata.youtube.com/feeds/api/videos/Ej4_G-E1cAM/comments') 
for entry in result.entries: 
with open("write.txt", "w") as text_file: 
text_file.write entry.author 

我試圖收穫留言給我的YouTube頻道..即將到來的贈品如果你想知道我使用這個什麼看似無用的數據。

最好的問候, -Mitch鮑威爾

+0

這是您的實際代碼? 'text_file.write entry.author'對我來說看起來不像Python。 – Kevin 2013-04-04 20:01:52

+0

不,這沒有格式正確..我有另一條線..我會編輯它,我道歉凱文!我extremley新的Python,我只是過去的「規劃」的經驗是基本的HTML和MSL的mIRC的自動化 – Freebie 2013-04-04 20:03:30

+0

你說的「去所有扭曲」是什麼意思? – Kevin 2013-04-04 20:06:17

回答

0
import feedparser 
f = open('filename','w') 
result = feedparser.parse('https://gdata.youtube.com/feeds/api/videos/Ej4_G-E1cAM/comments') 
for entry in result.entries: 
    f.write(entry.author) 
相關問題