Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 57 for item (0.175 sec.)
9. クラス — Python 3.6.5 ドキュメント 6799
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... Mapping : def __init__ ( self , iterable ): self . items_list = [] self . __update ( iterable ) def update ... ( self , iterable ): for item in iterable : self . items_list . append ( item ) ... e for update() # but does not break __init__() for item in zip ( keys , values ): self . items_list . appe ... nd ( item ) 難号化の規則は主に不慮の事故を防ぐためのものだと ...
https://man.plustar.jp/python/tutorial/classes.html - [similar]
10.1. itertools --- 効率的なループ実行のためのイテレータ生成関数 — Python 3.6.5... 6711
ナビゲーション 索引 モジュール | 次へ | 前へ | 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 ( col ... iterable , n , default = None ): "Returns the nth item or a default value" return next ( islice ( iterabl ... str.lower) --> A B C A D return map ( next , map ( itemgetter ( 1 ), groupby ( iterable , key ))) def iter ...
https://man.plustar.jp/python/library/itertools.html - [similar]
11. 標準ライブラリミニツアー --- その 2 — Python 3.6.5 ドキュメント 6637
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... 適切かもしれません: >>> t = Template ( 'Return the $item to $owner.' ) >>> d = dict ( item = 'unladen swall ... e "C:/python36/lib/weakref.py" , line 46 , in __getitem__ o = self . data [ key ]() KeyError : 'primary' 1 ...
https://man.plustar.jp/python/tutorial/stdlib2.html - [similar]
What's New in Python 2.5 — Python 3.6.5 ドキュメント 6637
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ニューオプションから提供されるコールバックは、 open_item() メソッドの部分適用版で、その最初の引数が適用済み ... です: ... class Application : def open_item ( self , path ): ... def init ( self ): open_func ... = functools . partial ( self . open_item , item_path ) popup_menu . append ( ( "Open" , ope ... 。 (Contributed by Ben Bell.) operator モジュールの itemgetter() 関数と attrgetter() 関数が複数フィールドを ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
8.6. bisect --- 配列二分法アルゴリズム — Python 3.6.5 ドキュメント 6564
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e ValueError def find_ge ( a , x ): 'Find leftmost item greater than or equal to x' i = bisect_left ( a , ...
https://man.plustar.jp/python/library/bisect.html - [similar]
16.16. ctypes --- Pythonのための外部関数ライブラリ — Python 3.6.5 ドキュメント 6564
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... in <module> File "ctypes.py" , line 310 , in __getitem__ func = _StdcallFuncPtr ( name , self ) Attribute ... に達したときはループを抜ける方が良いです。: >>> for item in table : ... if item . name is None : ... break ... ... print ( item . name . decode ( "ascii" ), item . size ) ... _fr ...
https://man.plustar.jp/python/library/ctypes.html - [similar]
15.1. hashlib --- セキュアハッシュおよびメッセージダイジェスト — Python 3.6.5 ... 6564
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... date the hash: >>> from hashlib import blake2b >>> items = [ b 'Hello' , b ' ' , b 'world' ] >>> h = blake ... 2b () >>> for item in items : ... h . update ( item ) >>> h . hexdige ...
https://man.plustar.jp/python/library/hashlib.html - [similar]
19.2. json --- JSON エンコーダおよびデコーダ — Python 3.6.5 ドキュメント 6564
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... るようになりました。 separators はもし指定するなら (item_separator, key_separator) というタプルでなければな ... るようになりました。 separators はもし指定するなら (item_separator, key_separator) というタプルでなければな ...
https://man.plustar.jp/python/library/json.html - [similar]
20.8. xml.dom.pulldom --- 部分的な DOM ツリー構築のサポート — Python 3.6.5 ドキ... 6564
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... .dom import pulldom doc = pulldom . parse ( 'sales_items.xml' ) for event , node in doc : if event == pull ... dom . START_ELEMENT and node . tagName == 'item' : if int ( node . getAttribute ( 'price' )) > 50 ...
https://man.plustar.jp/python/library/xml.dom.pulldom.html - [similar]
What's New in Python 2.4 — Python 3.6.5 ドキュメント 6564
ナビゲーション 索引 モジュール | 次へ | 前へ | 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 r ... ting in performance boosts for keys() , values() , items() , iterkeys() , itervalues() , and iteritems() . ... buted by Raymond Hettinger.) The methods list.__getitem__() , dict.__getitem__() , and dict.__contains__() ... r use as arguments to functionals: map(mydict.__getitem__, keylist) . (Contributed by Raymond Hettinger.) ...
https://man.plustar.jp/python/whatsnew/2.4.html - [similar]
PREV 1 2 3 4 5 6 NEXT