import feedparser
url = 'http://rss.accuweather.com/rss/liveweather_rss.asp?metric=1&locCode=XXXXXXXXXXXX'
thing = feedparser.parse(url)
tod = [[],[]]
for dd in range(2):
for x in thing.entries[dd+1].description.split():
if x != "High:" and x != "Low:" and not "<" in x and not ">" in x and not "http" in x:
tod[dd].append(x)
now = "Now: " + thing.entries[0].title.replace("Currently: ", "").replace(":", ",")
today = "Today: " + tod[0][2] + "/" + tod[0][0] + " ".join(tod[0][3:])
tomorrow = "Tomorrow: " + tod[0][2] + "/" + tod[0][0] + " ".join(tod[0][3:])
print now + "\n" + today + "\n" + tomorrow