Impossible de formuler le code correct

Bonjour 

section 4 Unité 3 



Pouvez vous m'aider , je n'arrive pas à trouver la bonne formule de code , je vous joins mon code que j ai ecris 



data1= quandl.get ('UCOM/LEAD_UKR ', start_date = '1996-12-31', end_date = '2018-12-31', api_key ="XV2yoLP1Dx4C8DHzjzgZ") 



merci à vous 

Hi Gregory,



You need to import quandl before using it. Can use the below line of code.

import quandl
data1 = quandl.get('UCOM/LEAD_UKR', start_date='1996-12-31',
                   end_date='2018-12-31', api_key="XV2yoLP1Dx4C8DHzjzgZ")

data1.head()

If this won't work, please send the complete error snippets so that we can check it further. Thanks!