Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Converting List to Libray
#4
Your terminology is incorrect. You are trying to make a dictionary, not a library. And your values are the same (1), not your keys. Keys by definition are different. If they were all the same key.

How to fix this is not clear, because what you want is not clear. Do you want the stock names a keys with the numbers as values?

mydata = {}
for stock in x:
    mydata[stock[0]] = stock[1:]
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply


Messages In This Thread
Converting List to Libray - by prophet11 - Apr-20-2019, 08:52 PM
RE: Converting List to Libray - by SheeppOSU - Apr-20-2019, 08:56 PM
RE: Converting List to Libray - by prophet11 - Apr-20-2019, 09:15 PM
RE: Converting List to Libray - by ichabod801 - Apr-20-2019, 09:50 PM
RE: Converting List to Libray - by SheeppOSU - Apr-20-2019, 10:23 PM
RE: Converting List to Libray - by prophet11 - Apr-21-2019, 01:44 AM
RE: Converting List to Libray - by perfringo - Apr-22-2019, 04:49 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Converting a list to dictinary tester_V 8 2,972 Jul-02-2021, 09:04 PM
Last Post: tester_V
  Converting tkinter listbox into list BigSwiggy 6 3,929 Feb-07-2021, 02:01 PM
Last Post: BigSwiggy
  Converting list to variables Palves 1 1,884 Sep-18-2020, 05:43 PM
Last Post: stullis
  Trouble with converting list , dict to int values! faryad13 7 4,007 Sep-04-2020, 06:25 AM
Last Post: faryad13
  converting list of zero length to a matrix of 3*3 vp1989 2 2,073 May-20-2020, 07:46 PM
Last Post: deanhystad
  converting string object inside a list into an intiger bwdu 4 2,800 Mar-31-2020, 10:36 AM
Last Post: buran
  more list help converting paul41 3 2,580 Nov-25-2019, 07:59 AM
Last Post: perfringo
  Converting parts of a list to int for sorting menator01 2 2,367 Nov-03-2019, 03:00 PM
Last Post: menator01
  Converting to a list and sort tantony 6 3,455 Oct-07-2019, 03:30 PM
Last Post: perfringo
  Converting List into list of tuples ARV 4 4,968 Sep-28-2019, 04:58 AM
Last Post: perfringo

Forum Jump:

User Panel Messages

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