<div dir="ltr"><a href="https://docs.python.org/2/library/json.html">https://docs.python.org/2/library/json.html</a><div><br></div><div>When describing how to use json.tool, you provide the following example code:</div><div><br></div><div><pre style="padding:5px;color:rgb(51,51,51);line-height:15.6000003814697px;border-top-width:1px;border-bottom-width:1px;border-style:solid none;border-top-color:rgb(170,204,153);border-bottom-color:rgb(170,204,153);background-color:rgb(238,255,204)">$ echo '{"json":"obj"}' | python <b>-mjson.tool</b>
{
    "json": "obj"
}
$ echo '{1.2:3.4}' | python <b>-mjson.tool</b>
Expecting property name enclosed in double quotes: line 1 column 2 (char 1)</pre></div><div><br></div><div>However, there is no space between the <b>-m</b> and the <b>json.tool</b>. There should be a space in those 2 places.</div></div>