micropython-lib/python-stdlib/pprint/pprint.py

7 wiersze
79 B
Python

def pformat(obj):
return repr(obj)
def pprint(obj):
print(repr(obj))