Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Converting List to Libray
#1
Dear Python Developers,
I hope you are having a great saturday. Could you please assert me if I'm coding this correct:
The goal is to convert my list into a library:

1) The code works but it provides me the same key for all items in the list. I'm I doing this right?

#Add list of stocks to dictionary
x = [("GOOGL", 125, 772.88, 941.53),
          ("MSFT", 85, 56.60, 73.04),
          ("RDS-A", 400, 49.58, 55.74),
          ("AIG", 235, 54.21, 65.27),
          ("FB", 150, 124.31, 172.45)]

mydata = {}

for i in range(len(x)):
    mydata[x[i]] = x.count(x[i])

print (mydata)
Output:
{('GOOGL', 125, 772.88, 941.53): 1, ('MSFT', 85, 56.6, 73.04): 1, ('RDS-A', 400, 49.58, 55.74): 1, ('AIG', 235, 54.21, 65.27): 1, ('FB', 150, 124.31, 172.45): 1}
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,005 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