開発環境
- macOS Sierra - Apple (OS)
- Emacs (Text Editor)
- Python 3.6, JavaScript (プログラミング言語)
- JavaScriptリファレンス 第6版(参考書籍)
— らん (@randomer____) 2017年8月13日
不定形(∞ ・0) について、sympy(Python) と JavaScript が正しい答えを計算してくれるか試してみた。
まずは SymPy(Python)。
コード(Emacs)
Python 3
#!/usr/bin/env python3 # -*- coding: utf-8 -*- from sympy import pprint, S eq = S.Infinity * (-1 + 1) pprint(eq)
入出力結果(Terminal, IPython)
$ ./sample.py nan $
SymPy(Python)は希望通りの計算結果。
次は JavaScript で。
HTML5
<pre id="output0"></pre> <button id="run0">run</button> <button id="clear0">clear</button> <script src="sample.js"></script>
JavaScript
let pre0 = document.querySelector('#output0'), btn0 = document.querySelector('#run0'), btn1 = document.querySelector('#clear0'), p = (x) => pre0.textContent += x + '\n'; let output = () => p(`∞ + (-1 + 1) = ${Infinity * (-1 + 1)}`); btn0.onclick = output; btn1.onclick = pre0.textContent = ''; output();
ということで、JavaScriptでも希望通りの計算結果に。
0 コメント:
コメントを投稿