Aug 28, 2016

はじめの Python プログラム

コンピュータプログラムとは、コンピュータに対して命令を記述したものである。
上記の定義は WiKi から引用したものです。

Python のプログラムを書けるツールはたくさんがあります。例えば、Eclipse, notepad++ など、私は vim を利用します。






では、Python 実際にどのようにProgram を実行しているか?下記のグラフをご覧ください
Python ファイルを実行した際、Compiler は .pyc を変更させ、PVMで実行します。

数学関数

数学を計算するとき、Python がよく利用している Module は Math です。Math Module は Python の標準 Module であり、インストールしなくでも利用できます。

さて、Math Module を試しましょう!

HanBindeiMac:~ hanbin$ python
Python 2.7.10 (default, Oct 23 2015, 19:19:21) 
[GCC 4.2.1 Compatible Apple LLVM 7.0.0 (clang-700.0.59.5)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> 
>>> import math
>>> 
>>> math.pi
3.141592653589793
>>> 
Python でModule を引用するため、import というキーワードを使います。また、Mathの Module はどんな関数を持っているかを確認するため、dir() 関数で確認できます。

>> dir(math)
['__doc__', '__file__', '__name__', '__package__', 'acos', 'acosh', 'asin', 'asinh', 'atan', 'atan2', 'atanh', 'ceil', 'copysign', 'cos', 'cosh', 'degrees', 'e', 'erf', 'erfc', 'exp', 'expm1', 'fabs', 'factorial', 'floor', 'fmod', 'frexp', 'fsum', 'gamma', 'hypot', 'isinf', 'isnan', 'ldexp', 'lgamma', 'log', 'log10', 'log1p', 'modf', 'pi', 'pow', 'radians', 'sin', 'sinh', 'sqrt', 'tan', 'tanh', 'trunc']
>>> 

さらに、help関数を利用し、各関数の詳細を確認することができます。例えば、

>>> help(math.pow)
Help on built-in function pow in module math:

pow(...)
    pow(x, y)
    
    Return x**y (x to the power of y).
(END)

>>> math.pow(2,3)
8.0
>>> math.log10(1000)
3.0
>>>

また、Python で標準的Module 以外ものをインストールしたい場合、pip の利用を勧めです。詳細に関しては、下記のURL をご参照ください
http://uxmilk.jp/12691