Ive created sectors from using ml/ai and Id like to automate a dictionary of the lists.
Budget: $10 – $30 USD
Ive created sectors from using ml/ai and Id like to automate a dictionary of the lists.
it = 'AAPL MSFT GOOGL'
energy= 'OXY XOM SWN'
secN = [ 'it', 'energy' ]
sec = [ it, energy]
secT = { s[0]: s[1] for s in zip(secN, sec)}
Can I get this done if the sector groups over times changes?
it = 'AAPL MSFT GOOGL'
energy= 'OXY XOM SWN'
secN = [ 'it', 'energy' ]
sec = [ it, energy]
secT = { s[0]: s[1] for s in zip(secN, sec)}
Can I get this done if the sector groups over times changes?