Python練習帳
Pythonを使って、単行のスクリプトから、GoogleAppEngineで動作するアプリケーションまで作成していきます。
2010年12月11日土曜日
pass / 何もしない
何も操作をしたくないが構文上の都合で文(statement)が必要なときにはpassを使えばよい。
>>> def func():
...
...
File "
", line 3
^
IndentationError: expected an indented block
>>> def func():
... pass
...
>>> func()
>>>
0 件のコメント:
コメントを投稿
‹
›
ホーム
ウェブ バージョンを表示
0 件のコメント:
コメントを投稿