for example its possible to create a list for just GPIO leds=[10,9,11,5,6,7] GPIO.setup(leds,GPIO.OUT,initial=GPIO.LOW) But now i wanna do the same for PWM pins because its cleaner code, now i have to do this groen1=GPIO.PWM(leds[0],100) groen2=GPIO.PWM(leds[1],100) geel1=GPIO.PWM(leds[2],100) geel2...