前回のサンプル
/>>> the_world_is_flat = 1
>>> if the_world_is_flat:
... print "Be careful not to fall off!"
...
Be careful not to fall off!
ですが、キーボードで打つのは
the_world_is_flat = 1<Enter>
if the_world_is_flat:
<このときコマンドの最後に : を入れるのを忘れないように!>
print "Be careful not to fall off!"
になります。
/>>> the_world_is_flat = 1
>>> if the_world_is_flat:
... print "Be careful not to fall off!"
...
Be careful not to fall off!
ですが、キーボードで打つのは
the_world_is_flat = 1<Enter>
if the_world_is_flat:
<このときコマンドの最後に : を入れるのを忘れないように!>
になります。
Powered by ScribeFire.
0 件のコメント:
コメントを投稿