mirror of
https://github.com/micropython/micropython.git
synced 2025-09-07 02:10:52 +02:00
7 lines
90 B
Python
7 lines
90 B
Python
try:
|
|
import ujson as json
|
|
except ImportError:
|
|
import json
|
|
|
|
print(json.dumps(1.2))
|