| 意味 | 例文 |
iterableを含む例文一覧と使い方
該当件数 : 41件
Equivalent to: sorted(iterable)[:n] 例文帳に追加
以下のコードと同等です: sorted(iterable)[:n] - Python
Make an iterator that returns elements from the first iterable until it is exhausted, then proceeds to the next iterable, until all of the iterables are exhausted.例文帳に追加
先頭のiterableの全要素を返し、次に2番目のiterableの全要素…と全iterableの要素を返すイテレータを作成します。 - Python
Append items from iterable to the end of the array. 例文帳に追加
iterable から要素を取り出し、アレイの末尾に要素を追加します。 - Python
def ifilter(predicate, iterable):if predicate is None:predicate = boolfor x in iterable:if predicate(x):yield x 例文帳に追加
この関数は以下のスクリプトと同等です: def ifilter(predicate, iterable):if predicate is None:predicate = boolfor x in iterable:if predicate(x):yield x - Python
Make an iterator that returns elements from the iterable as long as the predicate is true.例文帳に追加
predicateが真である限りiterableから要素を返すイテレータを作成します。 - Python
Return a set whose elements are taken from iterable. 例文帳に追加
集合を表現するset 型オブジェクトを返します。 要素は iterable から取得します。 - Python
Equivalent to: sorted(iterable, reverse=True)[:n] New in version 2.4. 例文帳に追加
以下のコードと同等です: sorted(iterable, reverse=True)[:n] バージョン 2.4 で 新たに追加 された仕様です。 - Python
Make an iterator returning elements from the iterable and saving a copy of each.例文帳に追加
iterableから要素を取得し、同時にそのコピーを保存するイテレータを作成します。 - Python
Each of these, in turn, consists of an iterable set of File_MARC_Data_Field or File_MARC_Control_Field objects representing MARC fields. 例文帳に追加
これが MARC フィールドを表します。 - PEAR
Extend the right side of the deque by appending elements from the iterable argument.例文帳に追加
イテレータ化可能な引数 iterable から得られる要素を deque の右側に追加し拡張します。 - Python
Extend the left side of the deque by appending elements from iterable.例文帳に追加
イテレータ化可能な引数 iterable から得られる要素を deque の左側に追加し拡張します。 - Python
Return a list with the n largest elements from the dataset defined by iterable.例文帳に追加
iterableで定義されるデータセットのうち、最大値から降順にn個の値のリストを返します。 - Python
Make an iterator that returns selected elements from the iterable.If start is non-zero, then elements from the iterable are skippeduntil start is reached. 例文帳に追加
iterableから要素を選択して返すイテレータを作成します。 startが0以外であれば、iterableの先頭要素はstartに達するまでスキップします。 - Python
When the iterable is exhausted, return elements from the saved copy. Repeats indefinitely.例文帳に追加
iterableの全要素を返すと、セーブされたコピーから要素を返し、これを無限に繰り返します。 - Python
Return a list with the n smallest elements from the dataset defined by iterable.例文帳に追加
iterableで定義されるデータセットのうち、最小値から昇順にn個の値のリストを返します。 - Python
If iterable is not specified, returns a new empty set,frozenset([]).New in version 2.4.例文帳に追加
iterable を指定しない場合には空の集合 frozenset([]) を返します。 バージョン 2.4 で 新たに追加 された仕様です。 - Python
If iterable is not specified,returns a new empty set, set([]).New in version 2.4. 例文帳に追加
iterable を指定しない場合、新たな空の set 型オブジェクト、set([]) を返します。 バージョン 2.4 で 新たに追加 された仕様です。 - Python
Make an iterator that returns consecutive keys and groups from the iterable.例文帳に追加
同じキーをもつような要素からなるiterable 中のグループに対して、キーとグループを返すようなイテレータを作成します。 - Python
If the optional iterableparameter is supplied, updates the set with elements obtained from iteration.All of the elements in iterable should be immutable or be transformable to an immutable using the protocol described insection5.15.3.例文帳に追加
もしオプションiterableが与えられたら、イタレータから得られた要素を備えた集合として更新します。 - Python
Return an enumerate object. iterable must be a sequence, an iterator, or some other object which supports iteration.例文帳に追加
列挙オブジェクトを返します。 iterable はシーケンス型、イテレータ型、あるいは反復をサポートする他のオブジェクト型でなければなりません。 - Python
Make an iterator that computes the function using arguments tuplesobtained from the iterable. 例文帳に追加
iterablesの要素を引数としてfuntionを呼び出すイテレータを作成します。 - Python
If iterable is another array, it must have exactly the same type code; if not, TypeError will be raised.例文帳に追加
iterable が別のアレイ型である場合、二つのアレイは全く同じ型コードをでなければなりません。 それ以外の場合にはTypeError を送出します。 - Python
Return n independent iterators from a single iterable.The case where n==2 is equivalent to: 例文帳に追加
一つのiterable からn 個の独立したイテレータを生成して返します。 - Python
The for statement is used to iterate over the elements of a sequence (such as a string, tuple or list) or other iterable object:例文帳に追加
for 文は、シーケンス (文字列、タプルまたはリスト) や、その他の反復可能なオブジェクト (iterable object) 内の要素に渡って反復処理を行うために使われます: - Python
If iterable is not an array, it must be iterable and its elements must be the right type to be appended to the array.Changed in version 2.4:Formerly, the argument could only be another array.例文帳に追加
iterable がアレイでない場合、アレイに値を追加できるような正しい型の要素からなるイテレーション可能オブジェクトでなければなりません。 バージョン 2.4 で 変更 された仕様:以前は他のアレイ型しか引数に指定できませんでした。 - Python
Because the source is shared, when the groupby object is advanced, the previous group is no longer visible.例文帳に追加
返されるグループはそれ自体がイテレータで、groupby()と iterable を共有しています。 - Python
If iterable is not specified, the new deque is empty.Deques are a generalization of stacks and queues (the name is pronounced``deck'' and is short for ``double-ended queue'').例文帳に追加
iterable が指定されない場合、新しい deque オブジェクトは空になります。 Deque とは、スタックとキューを一般化したものです (この名前は「デック」と発音され、これは「double-ended queue」の省略形です)。 - Python
Note, the series of left appends results in reversing the order of elements in the iterable argument.例文帳に追加
注意: 左から追加した結果は、イテレータ引数の順序とは逆になります。 - Python
The expression list is evaluated once; it should yield an iterable object.例文帳に追加
式リストは一度だけ評価されます; 結果はイテレーション可能オブジェクトにならねばなりません。 - Python
Update or merge into dictionary a, from the key-value pairs inseq2. seq2 must be an iterable object producingiterable objects of length 2, viewed as key-value pairs. 例文帳に追加
seq2 内のキー/値ペアを使って、辞書a の内容を更新したり統合したりします。 seq2 は、キー/値のペアとみなせる長さ 2 の反復可能オブジェクト(iterable object) を生成する反復可能オブジェクトでなければなりません。 - Python
Make an iterator that drops elements from the iterable as long as the predicate is true; afterwards, returns every element.例文帳に追加
predicateが真である限りは要素を無視し、その後は全ての要素を返すイテレータを作成します。 - Python
If the optionaliterable parameter is supplied, updates the set with elements obtained from iteration.例文帳に追加
もしオプションiterableが与えられたら、イタレータから得られた要素を備えた集合として更新します。 - Python
Make an iterator that filters elements from iterable returning only those for which the predicate is True.If predicate is None, return the items that are true.Equivalent to:例文帳に追加
predicateがTrueとなる要素だけを返すイテレータを作成します。 predicateがNoneの場合、値が真であるアイテムだけを返します。 - Python
Make an iterator that filters elements from iterable returning only those for which the predicate is False.If predicate is None, return the items that are false.Equivalent to:例文帳に追加
predicateがFalseとなる要素だけを返すイテレータを作成します。 predicateがNoneの場合、値が偽であるアイテムだけを返します。 - Python
All implementations of mailbox objects are iterable objects, and have one externally visible method.例文帳に追加
メイルボックスオブジェクトの実装はすべて反復可能なオブジェクトであり、外部に公開されているメソッドを一つもっています。 - Python
The superior memory performance is kept by processing elements one at a time rather than bringing the whole iterable into memory all at once.Code volume is kept small by linking the tools together in a functional stylewhich helps eliminate temporary variables.例文帳に追加
iterable 全体をを一度にメモリ上に置くよりも、要素を一つづつ処理する方がメモリ効率上の有利さを保てます。 関数形式のままツールをリンクしてゆくと、コードのサイズを減らし、一時変数を減らす助けになります。 - Python
If stop is None, then iteration continues until the iterator is exhausted, if at all; otherwise, it stops at the specified position.例文帳に追加
stopがNoneであれば、無限に、もしくはiterableの全要素を返すまで値を返します。 None以外ならイテレータは指定された要素位置で停止します。 - Python
This class variable can be assigned a string, iterable, or sequence of strings with variable names used by instances.例文帳に追加
このクラス変数には、文字列、反復可能オブジェクト、あるいはインスタンスが用いる変数名を表す文字列からなるシーケンスを代入することができます。 - Python
Any non-string iterable may be assigned to __slots__.Mappings may also be used; however, in the future, special meaning maybe assigned to the values corresponding to each key. 例文帳に追加
辞書型も使うことができます; しかし将来、辞書の各キーに相当する値に何らかの特殊な意味が割り当てられるかもしれません。 - Python
| 意味 | 例文 |
| Copyright © Japan Patent office. All Rights Reserved. |
| この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。 |
| Copyright © 2001 - 2008 by the PEAR Documentation Group. This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at http://www.opencontent.org/openpub/ ). |
| Copyright 2001-2004 Python Software Foundation.All rights reserved. Copyright 2000 BeOpen.com.All rights reserved. Copyright 1995-2000 Corporation for National Research Initiatives.All rights reserved. Copyright 1991-1995 Stichting Mathematisch Centrum.All rights reserved. |
|
ログイン |
Weblio会員(無料)になると
|
|
ログイン |
Weblio会員(無料)になると
|