python.rst
changeset 1221 3354c6e9cb95
parent 1211 02aabbf45b59
child 1298 1e7db170c823
equal deleted inserted replaced
1220:74f1ff61a801 1221:3354c6e9cb95
    62 PyChecker.
    62 PyChecker.
    63 ----------
    63 ----------
    64 
    64 
    65   http://pychecker.sourceforge.net/
    65   http://pychecker.sourceforge.net/
    66 
    66 
       
    67 Debugging Python code.
       
    68 ======================
       
    69 
       
    70 Pretty print under Python.
       
    71 --------------------------
       
    72 ::
       
    73 
       
    74   import pprint
       
    75   print(pprint.pformat('string'))
       
    76   print(pprint.pformat(['1', '2']))
       
    77 
       
    78 See:
       
    79 
       
    80   http://docs.python.org/library/pprint.html
       
    81                 Doc page.
       
    82