Python

平成30年5月1日
https://www.python.org/downloads/release/python-365/
python-3.6.5-embed-amd64.zip

早速SyntaxErrorが出る。
print ("H")
と書くべき所
print "H"
と書いてしまっていた。
親切にも
SyntaxError: Missing parentheses in call to 'print'. Did you mean print("H")?
と警告を出してくれている。

平成30年5月2日
0.5*4=2.0
なのは理解できるが
0.2*3=0.6000000000000001
という計算結果には納得いかない。