Daftar Simpan Python ke JSON

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