#Finds the Image descriptions and saves to a list
url = 'http://www.nasa.gov/rss/dyn/lg_image_of_the_day.rss'
describe_text = urlopen(url).read()
description = findall('<description>(.+)</description>',describe_text)
x = description[1]
#Button Functions
def next_button_description():
Help
每當我按下我的小部件按鈕它將調用該功能,我需要描述[1]將位置更改爲描述[2]等等...每次按鈕。我明顯是一個新手用python請幫忙!!使用Python 2.7如何更改循環中的列表位置
當您將描述[1]更改爲描述[2]時,您希望在描述中添加什麼[1] –
基本描述是程序運行時的描述列表,它從列表中拉出第一個描述。當我按下我的小工具按鈕時,我需要它將描述更改爲列表中的下一個。 – mike
我建議你聲明一個變量爲0(即myVar = 0),當拉描述時,而不是調用descption [1],調用x = description [myVar],然後每次運行按鈕函數時,都會像增加myVar一樣即(myVar = myVar + 1) – Aphire