Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 58 for items (0.054 sec.)
What's New in Python 2.4 — Python 3.6.5 ドキュメント 7142
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... low = 5 ) >>> for k , v in sorted ( colormap . iteritems ()): ... print k , v ... black 4 blue 2 green 3 re ... ting in performance boosts for keys() , values() , items() , iterkeys() , itervalues() , and iteritems() . ... d = deque ( 'ghi' ) # make a new deque with three items >>> d . append ( 'j' ) # add a new entry to the ri ... erbose = 1 ) 上の例はこのような出力を生成します: 1 items passed all tests : 2 tests in f 2 tests in 1 items ...
https://man.plustar.jp/python/whatsnew/2.4.html - [similar]
シーケンス型プロトコル (sequence protocol) — Python 3.6.5 ドキュメント 6967
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... 番目の要素を返します。 PyObject ** PySequence_Fast_ITEMS ( PyObject *o ) ¶ PyObject ポインタの背後にあるアレ ...
https://man.plustar.jp/python/c-api/sequence.html - [similar]
19.1.7. email.contentmanager: MIME 内容の管理 — Python 3.6.5 ドキュメント 6967
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... as its value. If params is specified, iterate its items method and use the resulting (key, value) pairs to ...
https://man.plustar.jp/python/library/email.contentmanager.html - [similar]
15.1. hashlib --- セキュアハッシュおよびメッセージダイジェスト — Python 3.6.5 ... 6967
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... date the hash: >>> from hashlib import blake2b >>> items = [ b 'Hello' , b ' ' , b 'world' ] >>> h = blake2 ... b () >>> for item in items : ... h . update ( item ) >>> h . hexdigest () '6f ...
https://man.plustar.jp/python/library/hashlib.html - [similar]
10.1. itertools --- 効率的なループ実行のためのイテレータ生成関数 — Python 3.6.5... 6967
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... きます。 def take ( n , iterable ): "Return first n items of the iterable as a list" return list ( islice ( ... , iterable ): "Return an iterator over the last n items" # tail(3, 'ABCDEFG') --> E F G return iter ( coll ...
https://man.plustar.jp/python/library/itertools.html - [similar]
24.1. turtle --- タートルグラフィックス — Python 3.6.5 ドキュメント 6967
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... d" , pensize = 10 ) >>> sorted ( turtle . pen () . items ()) [('fillcolor', 'black'), ('outline', 1), ('pen ... > turtle . penup () >>> sorted ( turtle . pen () . items ())[: 3 ] [('fillcolor', ''), ('outline', 1), ('pe ... llcolor = "green" ) >>> sorted ( turtle . pen () . items ())[: 3 ] [('fillcolor', 'green'), ('outline', 1), ...
https://man.plustar.jp/python/library/turtle.html - [similar]
20.8. xml.dom.pulldom --- 部分的な DOM ツリー構築のサポート — Python 3.6.5 ドキ... 6967
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... .dom import pulldom doc = pulldom . parse ( 'sales_items.xml' ) for event , node in doc : if event == pulld ...
https://man.plustar.jp/python/library/xml.dom.pulldom.html - [similar]
5. データ構造 — Python 3.6.5 ドキュメント 6967
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... ループのテクニック ¶ 辞書に対してループを行う際、 items() メソッドを使うと、キーとそれに対応する値を同時に ... 'robin' : 'the brave' } >>> for k , v in knights . items (): ... print ( k , v ) ... gallahad the pure robi ...
https://man.plustar.jp/python/tutorial/datastructures.html - [similar]
辞書オブジェクト (dictionary object) — Python 3.6.5 ドキュメント 6776
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... を、失敗した場合には -1 を返します。 int PyDict_SetItemString ( PyObject *p , const char *key , PyObject *v ... を、失敗した場合には -1 を返します。 int PyDict_DelItemString ( PyObject *p , const char *key ) ¶ 辞書 p か ... セット せずに NULL を返します。 PyObject * PyDict_GetItemString ( PyObject *p , const char *key ) ¶ Return va ... しません。 バージョン 3.4 で追加. PyObject * PyDict_Items ( PyObject *p ) ¶ Return value: New reference. 辞書 ...
https://man.plustar.jp/python/c-api/dict.html - [similar]
8.4. collections.abc --- コレクションの抽象基底クラス — Python 3.6.5 ドキュメン... 6776
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... titem__ , __iter__ , __len__ __contains__ , keys , items , values , get , __eq__ , __ne__ MutableMapping Ma ... ar , update , setdefault MappingView Sized __len__ ItemsView MappingView , Set __contains__ , __iter__ Keys ... lections.abc. MappingView ¶ class collections.abc. ItemsView ¶ class collections.abc. KeysView ¶ class coll ...
https://man.plustar.jp/python/library/collections.abc.html - [similar]
PREV 1 2 3 4 5 6 NEXT