5 lines
61 B
Python
5 lines
61 B
Python
|
|
import json
|
||
|
|
|
||
|
|
def json_output(data):
|
||
|
|
return json.dumps(data)
|