パイソンをいじる

  • pythonを使い始める人とともに、しばしpythonをいじってみることにする
$ python
>>> a=1
>>> b=3
>>> print a+1
  • とか
#! /usr/bin/env python

print "hello, python"
  • なる"hello.py"なるファイルを
$ python hello.py