Python FAQ

Python とは

Python の特徴

Python の実行方法

コマンドラインでの実行

# python -c 'print 1 + 2'
3
# python -c 'print "hello"'
hello
#

対話形式での実行

# python
Python 2.4.1 (#2, Oct 18 2006, 20:58:01)
[GCC 3.3.5 (Debian 1:3.3.5-13)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 1 + 2
3
>>> print "hello"
hello
>>>

スクリプトでの実行

# cat test.py
x = 1 + 2
print x
print "hello"
# python test.py
3
hello
#

Python の実装

以下の、Python はすべてフリーでダウンロードできる。

CPython
標準の Python
Jython
Java によって書かれた Python
ActivePython
Windows 用の Python
IronPython
Windows の .NET 上で動作する Python

参考書

リンク

参考


Home | Contents
Mail