Python Enregistrer la liste à JSON

import json
with open('data.json', 'w') as f:
    json.dump(data, f)
Gifted Gull