import json class AdvancedJSONEncoder(json.JSONEncoder): def default(self, obj): if isinstance(obj, set): return list(obj) return json.
確定! 回上一頁