helpコマンド
本日もWebでPythonを実行/学習できる、「PyWeb」を紹介します。
Pythonのhelpコマンドはマニュアルを表示してくれます。
help(‘<構文、関数名等>‘)
「if」文のマニュアルを見たい時は、
1 |
help('if') |
すると、下記が表示されます。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
The "if" statement ****************** The "if" statement is used for conditional execution: if_stmt ::= "if" assignment_expression ":" suite ("elif" assignment_expression ":" suite)* ["else" ":" suite] It selects exactly one of the suites by evaluating the expressions one by one until one is found to be true (see section Boolean operations for the definition of true and false); then that suite is executed (and no other part of the "if" statement is executed or evaluated). If all expressions are false, the suite of the "else" clause, if present, is executed. Related help topics: TRUTHVALUE |
残念ながら英語で表示されますが、それでも役立つはずです。
えっつ、コマンド入力するのが面倒?
お任せください!そんな面倒くさがりな「あなた」のため、「PyWeb」では便利な機能があります。
構文や関数名をダブルクリックするとメニューが出てきます。あとは「ヘルプコマンド」を選択するだけです。
画面右側にマニュアルが表示されます。また下に「Google 翻訳」へのリンクが表示されます。
Pythonのヘルプコマンドを活用すれば、学習テキストも不要!(多分・・・・、知らんけど・・)
『PyWebで、あなたのアイデアを実現しましょう』
「PyWeb」