Introduction to Python/ja: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

(newest | oldest) View ( | older 50) (20 | 50 | 100 | 250 | 500)

3 January 2019

  • curprev 09:5109:51, 3 January 2019Luc talk contribs 37,794 bytes +217 Created page with "Pythonは非常に知的であり、これが不可能であることを私たちに教えてくれます。いくつかの予約されたキーワードを持っており、..."
  • curprev 09:5109:51, 3 January 2019Luc talk contribs 37,577 bytes +77 Created page with "見ましたか?helloはもう未定義の言葉ではありません。不運にもPythonで予約されているキーワードを選んだ場合はどうなりますか..."
  • curprev 09:5109:51, 3 January 2019Luc talk contribs 37,500 bytes +175 Created page with "何がおこったのか解説すると、"hello"という文字列をaという名前をつけて格納しました。この時点でaは未知の名前ではありません..."
  • curprev 09:5109:51, 3 January 2019Luc talk contribs 37,325 bytes −1,851 No edit summary
  • curprev 09:5009:50, 3 January 2019Luc talk contribs 39,176 bytes +29 Created page with "今、私たちはインタプリタを使いこなせます。本気になって使いはじめましょう。"
  • curprev 09:5009:50, 3 January 2019Luc talk contribs 39,147 bytes +28 Created page with "あなたは、printコマンドが実行できるすべての完全な説明を得ることができます。"
  • curprev 09:5009:50, 3 January 2019Luc talk contribs 39,119 bytes +51 Created page with "または、例として、先ほどの「print hello」コマンドを使用して何が悪かったのかわからず"print"コマンドに関する具体的な情報が欲..."
  • curprev 09:5009:50, 3 January 2019Luc talk contribs 39,068 bytes +42 Created page with "Pythonインタプリタにもヘルプ機能があります。次の命令を試してください: help"
  • curprev 09:5009:50, 3 January 2019Luc talk contribs 39,026 bytes +221 Created page with "Pythonは"hello"が何かを知らないということを教えてくれる。 「"」はその中身が文字列であることを指します。それはプログラミン..."
  • curprev 09:5009:50, 3 January 2019Luc talk contribs 38,805 bytes +89 Created page with "<code>print</code> は言うまでもなく画面に何かを表示することを意味する特別なPythonのキーワードです。Enterキーを押すと、操作が実..."
  • curprev 09:5009:50, 3 January 2019Luc talk contribs 38,716 bytes +123 Created page with "インタプリタは、Pythonのバージョンを表示し、そしてコマンドプロンプトとなる>>>のシンボルを表示します。ここへPythonコードを..."
  • curprev 09:4909:49, 3 January 2019Luc talk contribs 38,593 bytes −2,034 Replaced content with "(表示されない場合は、View → Views → Python consoleをクリックしてください。)"
  • curprev 09:4909:49, 3 January 2019Luc talk contribs 40,627 bytes −44 No edit summary
  • curprev 09:4909:49, 3 January 2019Luc talk contribs 40,671 bytes −128 Created page with "まずは、実際に使ってみましょう!次は非常に簡単な紹介であることに注意してください。これは完全はチュートリアルではあり..."
  • curprev 09:4909:49, 3 January 2019Luc talk contribs 40,799 bytes −324 No edit summary
  • curprev 09:4809:48, 3 January 2019Luc talk contribs 41,123 bytes +149 Created page with "mathモジュールに含まれるすべての関数と同様、__doc__, __file__, __name__といった奇妙な名前が表示されます。__doc__ はドキュメントの..."
  • curprev 09:4709:47, 3 January 2019Luc talk contribs 40,974 bytes +143 Created page with "すべての利用可能なモジュールのリストが表示されます。対話式ヘルプから抜け出すには、qを入力し、それらのいずれかをインポ..."
  • curprev 09:4709:47, 3 January 2019Luc talk contribs 40,831 bytes +163 Created page with "最後にもう一つ、非常に有用なものがあります。どのようなモジュールがありその内部にはどのような関数があってどのように使..."
  • curprev 09:4709:47, 3 January 2019Luc talk contribs 40,668 bytes +131 Created page with "基本的に、すべてのモジュールはそのように動作します。モジュールをインポートしてから、module.function(引数)のようにその関数..."
  • curprev 09:4709:47, 3 January 2019Luc talk contribs 40,537 bytes +98 Created page with " また、testの部分を記述せずにsum()関数のように、メインのインタプリタ空間に直接関数を読み込むことができます: from test import..."
  • curprev 09:4709:47, 3 January 2019Luc talk contribs 40,439 bytes +151 Created page with "つまり、モジュールは"container"として読み込まれ、そのすべての関数は内部にあります。多くのモジュールをインポートし、すべ..."
  • curprev 09:4709:47, 3 January 2019Luc talk contribs 40,288 bytes +91 Created page with "これは以前行ったとおりです。我々はsum()関数を含むモジュールをインポートすると、構文が少し異なっています。次のように入..."
  • curprev 09:4609:46, 3 January 2019Luc talk contribs 40,197 bytes +33 Created page with "通常、インタプリタでsum()関数を記述し、実行するとき単に次のように入力します: sum(14,45)"
  • curprev 09:4609:46, 3 January 2019Luc talk contribs 40,164 bytes +105 Created page with ".pyの拡張子を除いたものです。これは単にインタプリタで1行ずつ書いて実行したかのように、ファイルの内容を実行します。sum関..."
  • curprev 09:4609:46, 3 January 2019Luc talk contribs 40,059 bytes +64 Created page with "そして作成したファイルをFreeCADの/binディレクトリにtest.pyとして保存します。さて、FreeCADを起動しましょう、そしてインタプリタ..."
  • curprev 09:4509:45, 3 January 2019Luc talk contribs 39,995 bytes +154 Created page with "Pythonでプログラムを実行する方法は何百もあります。Windowsでは、単にファイルを右クリックしPythonでそれを開いて実行します。し..."
  • curprev 09:4409:44, 3 January 2019Luc talk contribs 39,841 bytes +139 Created page with "最後に少し使いやすい方法は:新しいモジュールをプログラミングするとき、時々プログラムのテストを行いたいです。一度、Python..."
  • curprev 09:4309:43, 3 January 2019Luc talk contribs 39,702 bytes +53 Created page with "しかし、myTestFunction()関数が正しく動作しませんか?エディタに戻って修正します。そのとき、Pythonインタプリタを一度閉じて再度..."
  • curprev 09:4209:42, 3 January 2019Luc talk contribs 39,649 bytes +248 Created page with "これまで、インタプリタで1行ずつPythonの命令を書いてきましたね?もしいくつかの行をまとめて書くことができ、それらを一度に..."
  • curprev 09:4209:42, 3 January 2019Luc talk contribs 39,401 bytes −5,913 Replaced content with "今、Python使いこなすためには、最後に1つ必要なことがあります。それはどのようにファイルやモジュールを操作するかです。"
  • curprev 09:4109:41, 3 January 2019Luc talk contribs 45,314 bytes −7 Created page with "もちろん、ここではPythonの世界のごく一部を見ました。ここでは言及しなかったことで、多くの重要な概念があります。ネット上..."
  • curprev 09:4109:41, 3 January 2019Luc talk contribs 45,321 bytes +53 Created page with "ここを参照してくださいFreeCADの基本スクリプト..."
  • curprev 09:4109:41, 3 January 2019Luc talk contribs 45,268 bytes +185 Created page with "Pythonのプログラムを作るためのアイデアが理解できた思います。そして、FreeCADがどのようなモジュールを提供しているか探し始め..."
  • curprev 09:4109:41, 3 January 2019Luc talk contribs 45,083 bytes +1 Created page with "==FreeCADではじめる=="
  • curprev 09:4109:41, 3 January 2019Luc talk contribs 45,082 bytes +5,970 Created page with "今、Python使いこなすためには、最後に1つ必要なことがあります。それはどのようにファイルやモジュールを操作するかです。 こ..."
  • curprev 09:4009:40, 3 January 2019Luc talk contribs 39,112 bytes +8 Created page with "==モジュール=="
  • curprev 09:4009:40, 3 January 2019Luc talk contribs 39,104 bytes −3 Created page with "==関数=="
  • curprev 09:3909:39, 3 January 2019Luc talk contribs 39,107 bytes +3,789 Created page with "リストの一つのとても洗練された使用方法は、アイテムを参照して各要素で何らかの処理をすることです。例えばこれを見てくだ..."
  • curprev 09:3909:39, 3 January 2019Luc talk contribs 35,318 bytes +4 Created page with "==インデント=="
  • curprev 09:3809:38, 3 January 2019Luc talk contribs 35,314 bytes +4 Created page with "==リスト=="
  • curprev 09:3809:38, 3 January 2019Luc talk contribs 35,310 bytes +4,611 Created page with "もちろん、あなたがプログラムを作る上で文字列だけでなくすべての種類のデータ、特に数値を使うことを知っている必要があり..."
  • curprev 09:3709:37, 3 January 2019Luc talk contribs 30,699 bytes −1 Created page with "==数値=="
  • curprev 09:3709:37, 3 January 2019Luc talk contribs 30,700 bytes +1,961 Created page with "もちろん、"hello"を表示することが注目すべき点ではありません。より注目すべき点は、あなたが気づかなかったことをPythonが解釈..."
  • curprev 09:3609:36, 3 January 2019Luc talk contribs 28,739 bytes −3 Created page with "==変数=="
  • curprev 09:3609:36, 3 January 2019Luc talk contribs 28,742 bytes +2,071 Created page with "(表示されない場合は、View → Views → Python consoleをクリックしてください。) インタプリタは、Pythonのバージョンを表示し、そ..."
  • curprev 09:3509:35, 3 January 2019Luc talk contribs 26,671 bytes +274 Created page with "Pythonにおけるプロセスは、Pythonインタプリタの内部で透過的に実行できます。Pythonインタプリタは、Pythonウィンドウのコマンドプ..."
  • curprev 09:3409:34, 3 January 2019Luc talk contribs 26,397 bytes +202 Created page with "通常、コンピュータプログラムを書くとき、単にテキストエディタを使用するかほとんど場合は、特別なプログラミング環境のテ..."
  • curprev 09:3409:34, 3 January 2019Luc talk contribs 26,195 bytes +3 Created page with "==インタプリタ=="
  • curprev 09:3309:33, 3 January 2019Luc talk contribs 26,192 bytes +662 Created page with "*人間が読みやすいように特別に設計されたので、それを学習し理解することは非常に容易であるされています。 *C言語のようなコ..."
  • curprev 09:3309:33, 3 January 2019Luc talk contribs 25,530 bytes +25,530 Created page with "これは、Pythonをはじめる人のために作られた短いチュートリアルです。 [http://en.wikipedia.org/wiki/Python_%28programming_language%29 Python]はオ..."
(newest | oldest) View ( | older 50) (20 | 50 | 100 | 250 | 500)