I\'m fairly new to pygame and ive hit my first stump which I cannot find an answer for..
After blitting text, then changing the string for the same variable, the gam
You could also overwrite your text. Like this:
label = myfont.render("Text", 0, (255,255,0)) screen.blit(label, (100, 100)) if x: //Parameter you check before overwrite label = myfont.render("Text", 0, BACKGROUND_COLOR) screen.blit(label, (100, 100))