APIで取得した辞書型リストproduct_info[0]からproduct_info[6]のデータについて、それぞれproductとvolumeを表示させたいのですが、その表示がうまくいかずに悩んでいます。
辞書型リストにおけるprintでの指定の仕方はどのようにすればいいのでしょうか。

# ※product_infoの中身はAPIで取得した内容をそのまま転記しております。
product_info=[]
product_info=[
'{"product":"hogeA","id":54,"volume":240}', 
'{"product":"hogeB","id":85,"volume":332}', 
'{"product":"hogeC","id":102,"volume":1023}',
 'none',
 'none',
 'none',
 'none'
]

for count in range(0,len(product_info)):
    if product_info[count] == 'none':
        print('売り切れ')
    else:
        print(product_info[count]['product','volume'])