2010年12月11日土曜日

pass / 何もしない

何も操作をしたくないが構文上の都合で文(statement)が必要なときにはpassを使えばよい。
>>> def func():
...
...
File "", line 3

^
IndentationError: expected an indented block
>>> def func():
... pass
...
>>> func()
>>>

0 件のコメント:

コメントを投稿