Comment faire pour convertir cette chaîne json dans un dictionnaire python?

Comment puis-je convertir cette chaîne ->

 string = [{"name":"sam"}]

dans un dictionnaire python comme soi ->

data = {
         "name" : "sam"
       }

OriginalL'auteur Sai Krishna | 2011-07-26