Python Forum
Convert python list to dictionary
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Convert python list to dictionary
#7
# a list

mylist = [{'Dia': 'qua', 'Promo': 'João', 'Loja': 6697}, {'Dia': 'qui', 'Promo': 'João', 'Loja': 5599}, {'Dia': 'sex', 'Promo': 'João', 'Loja': 7437}]

# dict from list

mydict = {i:mylist[i] for i in range(len(mylist))}
Reply


Messages In This Thread
Convert python list to dictionary - by akanowhere - Dec-27-2020, 12:45 AM
RE: Convert python list to dictionary - by Larz60+ - Dec-27-2020, 02:54 AM
RE: Convert python list to dictionary - by Larz60+ - Dec-27-2020, 08:15 PM
RE: Convert python list to dictionary - by Pedroski55 - Dec-27-2020, 09:26 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Dictionary in a list bashage 2 542 Dec-27-2023, 04:04 PM
Last Post: deanhystad
  filtering a list of dictionary as per given criteria jss 5 666 Dec-23-2023, 08:47 AM
Last Post: Gribouillis
  Sort a list of dictionaries by the only dictionary key Calab 1 488 Oct-27-2023, 03:03 PM
Last Post: buran
  How to add list to dictionary? Kull_Khan 3 998 Apr-04-2023, 08:35 AM
Last Post: ClaytonMorrison
  convert string to float in list jacklee26 6 1,898 Feb-13-2023, 01:14 AM
Last Post: jacklee26
  convert a list to links Pir8Radio 3 1,096 Nov-28-2022, 01:52 PM
Last Post: Pir8Radio
  convert this List Comprehensions to loop jacklee26 8 1,505 Oct-21-2022, 04:25 PM
Last Post: deanhystad
  check if element is in a list in a dictionary value ambrozote 4 1,963 May-11-2022, 06:05 PM
Last Post: deanhystad
  Convert list to interger Clives 5 1,624 May-09-2022, 12:53 PM
Last Post: deanhystad
  Dictionary from a list failed, help needed leoahum 7 1,958 Apr-28-2022, 06:59 AM
Last Post: buran

Forum Jump:

User Panel Messages

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