pytho****@googl*****
pytho****@googl*****
2011年 2月 26日 (土) 20:12:27 JST
Revision: b72fc7995d Author: Akihiro Uchida <uchid****@ike-d*****> Date: Sat Feb 26 03:11:54 2011 Log: 誤字の修正 http://code.google.com/p/python-doc-ja/source/detail?r=b72fc7995d Modified: /tutorial/controlflow.rst /tutorial/datastructures.rst ======================================= --- /tutorial/controlflow.rst Thu Feb 10 05:52:53 2011 +++ /tutorial/controlflow.rst Sat Feb 26 03:11:54 2011 @@ -334,7 +334,7 @@ ``ask_ok('OK to overwrte the file?', 2, 'Come on, only yes or no!')`` この例では :keyword:`in` キーワードが導入されています。 -このキーワードはシークエンスが特定の値を含んでいるかどうか調べるのに使われ ます。 +このキーワードはシーケンスが特定の値を含んでいるかどうか調べるのに使われま す。 デフォルト値は、関数が定義された時点で、関数を *定義している* 側のスコープ (scope) で評価されるので、 ======================================= --- /tutorial/datastructures.rst Sat Feb 19 07:51:29 2011 +++ /tutorial/datastructures.rst Sat Feb 26 03:11:54 2011 @@ -422,7 +422,7 @@ ====== Python には、 *集合 (set)* を扱うためのデータ型もあります。集合とは、重複す る要素をもたない、順序づけられていない要素の集まりです。 Set -オブジェクトは、結合 (union)、交差 (intersection)、差分 (difference)、対象 差 (symmetric difference) +オブジェクトは、結合 (union)、交差 (intersection)、差分 (difference)、対称 差 (symmetric difference) といった数学的な演算もサポートしています。 簡単なデモンストレーションを示します::