Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Combining arrays into dict
#1
Hi,

I'm trying to create a dictionay combining 2 arrays but I just cannot get it right.
The end result should be: EDITED:
{'in_ledS':0, 'in_ledXL':1, 'in_ledXXL':0, 'in_ledS1':1, 'in_ledS2':1}
I appreciate some help.

#leds status as input
in_ledS = 17      #pin 11
in_ledXL = 18     #pin 12
in_ledXXL = 22    #pin 15
in_ledS1 = 23     #pin 16
in_ledS2 = 4      #pin 7

leds_arry = [in_ledS, in_ledXL, in_ledXXL, in_ledS1, in_ledS2]
leds_state = [0, 1, 0, 1, 1]

def create_dict():
    leds_dict = {}
    for i in range(len(leds_arry)):
        leds_dict[i] = leds_arry[i] + leds_state[i]
    print(leds_state)

   #or

    x = dict(zip(leds_arry, leds_state))
    print(x)
Reply


Messages In This Thread
Combining arrays into dict - by ebolisa - Sep-26-2021, 09:06 PM
RE: Combining arrays into dict - by bowlofred - Sep-26-2021, 09:20 PM
RE: Combining arrays into dict - by ebolisa - Sep-26-2021, 09:27 PM
RE: Combining arrays into dict - by Pedroski55 - Sep-26-2021, 11:44 PM
RE: Combining arrays into dict - by bowlofred - Sep-26-2021, 11:56 PM
RE: Combining arrays into dict - by deanhystad - Sep-27-2021, 02:52 AM
RE: Combining arrays into dict - by ebolisa - Sep-27-2021, 07:52 AM
RE: Combining arrays into dict - by deanhystad - Sep-27-2021, 03:15 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Sort a dict in dict cherry_cherry 4 80,853 Apr-08-2020, 12:25 PM
Last Post: perfringo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020