from sense_emu import SenseHat
sense = SenseHat()
text_red_prompt = input('How red do you want the text to be: _____ [Key Value between 0 - 255]'
text_red = int(text_red_prompt)
text_green_prompt = input('How green do you want the text to be: _____ [Key Value between 0 - 255]'
text_green = int(text_green_prompt)
How do I code using loops such that when a User were to input a number that is more than 255, the system will prompt the user to enter again before the system moves on to the text_green_prompt?