import json >>> print(json.dumps({'4': 5, '6': 7}, sort_keys=True, indent=4)) { "4": 5, "6": 7 } ... This module can thus also be used as a YAML serializer.
確定! 回上一頁