Python Basis

python coding

Installnation

Manual

集群上的Python还是2.4.3,而你需要Python2.6以上的版本。由于没有root权限去更新python,加上集群没有连外网。 这个时候你可以手动安装python,以python2.7.10为例。

./configure --prefix=/home/tangzeyuan/opt/Python-2.7.10
make
make install

Scripts

replace default arguments of a function

import functools
print = functools.partial(print, flush=True)