''' Write a program that simulates a yellow flashing light in the middle of the graphical window that flashes until you stop the program. Hint: use an infinite while loop (while screen.running(): . . . ), this will stop the program from running when the window is closed. A while loop will perform its code as long as the condition you state is true. '''