''' Python CodeX Midterm: Part B Create a flowchart for this code ''' from codex import * from time import sleep delay = 1 display.show("Press Button U") audio.mp3("sounds/up") sleep(delay) pressed = buttons.is_pressed(BTN_U) if pressed: pixels.set([GREEN, GREEN, GREEN, GREEN]) else: pixels.set([RED, RED, RED, RED]) display.show(pics.TARGET)