pytho****@googl*****
pytho****@googl*****
2014年 2月 15日 (土) 04:41:43 JST
Revision: 5f36cec93931 Branch: default Author: cocoatomo <cocoa****@gmail*****> Date: Fri Feb 14 19:42:05 2014 UTC Log: fix #666 to use the tranlsated sentence in Python 3.3 http://code.google.com/p/python-doc-ja/source/detail?r=5f36cec93931 Modified: /library/functions.rst ======================================= --- /library/functions.rst Fri Feb 14 19:24:15 2014 UTC +++ /library/functions.rst Fri Feb 14 19:42:05 2014 UTC @@ -1571,7 +1571,7 @@ iterable の、左から右への評価順序が保証されます。そのため ``zip(*[iter(s)]*n)`` を使ってデータ系列を n 個ずつのグループに分割する ことができます。 - ``*`` 演算子と共に :func:`zip` を使用し、リストを unzip することもできま す。 :: + :func:`zip` に続けて ``*`` 演算子を使うと、zip したリストを元に戻せま す。 :: >>> x = [1, 2, 3] >>> y = [4, 5, 6]