I am just starting to get to grips with a Sense Hat I have recently bought. (My coding skills are very limited)
I am trying to get it to display local weather using an rss feed.
This is my script
import feedparser from sense_hat import SenseHat
sense = SenseHat()
d = feedparser.parse("
for post in d.entries: print (post.title) sense.show_message(post.title)
It works fine but instead of a degree symbol a ? mark is displayed. It seems the dgree symbol is missing from the sense hat.
It there anyway to filter the output and either strip the degree symbol or subtitute it with the word 'degrees'