9 lines
131 B
Python
9 lines
131 B
Python
|
import json
|
||
|
from dataencoder import quotedstr
|
||
|
|
||
|
d = {
|
||
|
"gret":"HGREert",
|
||
|
"ynh":"RtghretbertBHER"
|
||
|
}
|
||
|
print(quotedstr(json.dumps(d)))
|