micropython-lib/pprint/pprint.py

6 wiersze
78 B
Python

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