Raspberry Pi - gpiozero Library
What will be the output of this code snippet using gpiozero?
from gpiozero import LED from time import sleep led = LED(17) led.on() sleep(1) print(led.is_lit)
