Python Forum
Reference new dictionary keys with a variable
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Reference new dictionary keys with a variable
#2
(May-06-2019, 07:17 PM)slouw Wrote:
Dict_Param['KeyStr[0]'] = AssignStr[0]
Dict_Param['KeyStr[1]'] = AssignStr[1]
Dict_Param['KeyStr[2]'] = AssignStr[2]

Remove the quotes, and that would work as you expect.

Or, you can do it the easy way and use a loop:
for index in range(len(KeyStr)):
    if index < len(AssignStr):
        key = KeyStr[index]
        val = AssignStr[index]
        Dict_Param[key] = val
Reply


Messages In This Thread
RE: Reference new dictionary keys with a variable - by nilamo - May-06-2019, 07:34 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  can Inner Class reference the Outer Class's static variable? raykuan 6 5,948 Jul-01-2022, 06:34 AM
Last Post: SharonDutton
  How to define a variable in Python that points to or is a reference to a list member JeffDelmas 4 2,669 Feb-28-2021, 10:38 PM
Last Post: JeffDelmas
  Adding keys and values to a dictionary giladal 3 2,513 Nov-19-2020, 04:58 PM
Last Post: deanhystad
  Pass by object reference when does it behave like pass by value or reference? mczarnek 2 2,572 Sep-07-2020, 08:02 AM
Last Post: perfringo
  access dictionary with keys from another and write values to list redminote4dd 6 3,271 Jun-03-2020, 05:20 PM
Last Post: DeaD_EyE
  Drop Keys From Dictionary donnertrud 8 3,755 May-30-2020, 11:39 AM
Last Post: DeaD_EyE
  variable as dictionary name? diazepam 4 11,228 Apr-27-2020, 08:11 AM
Last Post: deanhystad
  Problem adding keys/values to dictionary where keynames = "property" and "value" jasonashaw 1 2,060 Dec-17-2019, 08:00 PM
Last Post: jasonashaw
  Checking if the combination of two keys is in a dictionary? mrsenorchuck 6 3,917 Dec-04-2019, 10:35 AM
Last Post: mrsenorchuck
  Retrieving dictionary keys within with another dictionay bazcurtis 8 2,861 Oct-29-2019, 10:06 PM
Last Post: bazcurtis

Forum Jump:

User Panel Messages

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