2013-04-30から1日間の記事一覧

pythonのお勉強その1

インタプリタのパスを通す癖をつける $which python /usr/bin/python#! /usr/bin/python エンコードの指定も忘れずに #! /usr/bin/python # -*- coding: utf-8 -*- 関数オブジェクトの定義 def funcName(arg): # 処理... print arg return arg __name__ はモ…