micropython-lib/pprint/pprint.py

6 wiersze
78 B
Python
Czysty Zwykły widok Historia

2015-05-05 07:06:11 +00:00
def pformat(obj):
return repr(obj)
2017-05-11 18:20:24 +00:00
def pprint(obj):
print(repr(obj))