Example: list to json python import json friends_list = [ 'John', 'Rambo', 'Sam', ] json_format = json.dumps(friends_list) print(json_format) ...
確定! 回上一頁