2013-08-03 if hoge 的なやつ Python なにこのPHPみたいな挙動… def a(hoge=None): if hoge: print 'hoge' a(1) # hoge a(0) # 何も返らない!!