Raspberry Pi - gpiozero Library
How can you modify this code to turn on two LEDs connected to pins 17 and 27 simultaneously?
from gpiozero import LED led1 = LED(17) led2 = LED(27) # Your code here
