kopia lustrzana https://github.com/micropython/micropython-lib
6 wiersze
78 B
Python
6 wiersze
78 B
Python
|
|
def pformat(obj):
|
||
|
|
return repr(obj)
|
||
|
|
|
||
|
|
def pprint(obj):
|
||
|
|
print(repr(obj))
|