Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 91 - 100 of about 331 for OF (0.055 sec.)
What's New in Python 2.0 — Python 3.6.5 ドキュメント 4574
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ncoding(encoding) function in a customized version of site.py . 8 ビット文字列と Unicode 文字列を結合する ... うに書けるでしょう: # Given the list L, make a list of all strings # containing the substring S. sublist ... n sequenceN : if ( condition ): # Append the value of # the expression to the # resulting list. つまり、 ... のです: def f ( * args , ** kw ): # args is a tuple of positional args, # kw is a dictionary of keyword a ...
https://man.plustar.jp/python/whatsnew/2.0.html - [similar]
18.2. ssl --- ソケットオブジェクトに対する TLS/SSL ラッパー — Python 3.6.5 ドキ... 4546
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... りません。 バージョン 3.3 で追加. exception ssl. SSLEOFError ¶ SSL コネクションが唐突に打ち切られた際に送出 ... , do_handshake_on_connect=True , suppress_ragged_eofs=True , ciphers=None ) ¶ socket.socket のインスタン ... のブロッキング動作を制御できます。 suppress_ragged_eofs 引数は、 SSLSocket.recv() メソッドが、接続先から予 ... 期しないEOF を受け取った時に通知する方法を指定します。 True (デ ...
https://man.plustar.jp/python/library/ssl.html - [similar]
11. 標準ライブラリミニツアー --- その 2 — Python 3.6.5 ドキュメント 4546
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... just like fill() except that it returns ... a list of strings instead of one big string with newlines to ... is just like fill() except that it returns a list of strings instead of one big string with newlines to ... >>> conv = locale . localeconv () # get a mapping of conventions >>> x = 1234567.8 >>> locale . format ... のようになります: >>> import time , os.path >>> photofiles = [ 'img_1074.jpg' , 'img_1076.jpg' , 'img_107 ...
https://man.plustar.jp/python/tutorial/stdlib2.html - [similar]
What's New in Python 2.1 — Python 3.6.5 ドキュメント 4546
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 見かけます。: def find ( self , name ): "Return list of any entries equal to 'name'" L = filter ( lambda x ... an object, or a data structure that takes up a lot of memory, this can be a problem. 弱参照は、オブジェク ... ton の http://www.vex.net/parnassus/ にある Vaults of Parnassus が Python モジュールの最小限のカタログと ... om / __init__ . pyc DESCRIPTION The Python mapping of the Document Object Model is documented in the Pyt ...
https://man.plustar.jp/python/whatsnew/2.1.html - [similar]
1. C や C++ による Python の拡張 — Python 3.6.5 ドキュメント 4519
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... an extension module called spam (the favorite food of Monty Python fans...) and let's say we want to cre ... odule = { PyModuleDef_HEAD_INIT , "spam" , /* name of module */ spam_doc , /* module documentation, may ... be NULL */ -1 , /* size of per-interpreter state of the module, or -1 if the ... r if you want to make your module a permanent part of the Python interpreter, you will have to change th ...
https://man.plustar.jp/python/extending/extending.html - [similar]
10.1. itertools --- 効率的なループ実行のためのイテレータ生成関数 — Python 3.6.5... 4519
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... y() iterable[, key] sub-iterators grouped by value of key(v) islice() seq, [start,] stop [, step] seq[st ... 3, 4, 6, 6, 6, 9, 9, 9, 9, 9] # Amortize a 5% loan of 1000 with 4 annual payments of 90 >>> cashflows = ... 。 def take ( n , iterable ): "Return first n items of the iterable as a list" return list ( islice ( ite ... lue , iterator ): "Prepend a single value in front of an iterator" # prepend(1, [2, 3, 4]) -> 1 2 3 4 re ...
https://man.plustar.jp/python/library/itertools.html - [similar]
17.2. multiprocessing --- プロセスベースの並列処理 — Python 3.6.5 ドキュメント 4519
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... the unlinked named semaphores created by processes of the program. When all processes have exited the se ... rint ( res . get ( timeout = 1 )) # prints the PID of that process # launching multiple evaluations asyn ... ipe ( [ duplex ] ) ¶ Returns a pair (conn1, conn2) of Connection objects representing the ends of a pipe ... numerate() , threading.settrace() , threading.setprofile() , threading.Timer や threading.local のような ...
https://man.plustar.jp/python/library/multiprocessing.html - [similar]
21.6. urllib.request --- URL を開くための拡張可能なライブラリ — Python 3.6.5 ド... 4519
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ile , capath and cadefault are deprecated in favor of context . Please use ssl.SSLContext.load_cert_chai ... ndler will set these headers according to the type of data . Content-Length will be used to send bytes o ... e.urlencode() function takes a mapping or sequence of 2-tuples and returns an ASCII string in this forma ... ランザクションにおけるリクエストホスト (request-host of the origin transaction) です。デフォルトの値は htt ...
https://man.plustar.jp/python/library/urllib.request.html - [similar]
21.10. urllib.robotparser --- robots.txt のためのパーザ — Python 3.6.5 ドキュメ... 4519
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ます。 crawl_delay ( useragent ) ¶ Returns the value of the Crawl-delay parameter from robots.txt for the ... request_rate ( useragent ) ¶ Returns the contents of the Request-rate parameter from robots.txt as a na ... で追加. The following example demonstrates basic use of the RobotFileParser class: >>> import urllib.robot ... トプロトコルとサポート » © 著作権 2001-2022, Python Software Foundation. Python Software Foundation は非営 ...
https://man.plustar.jp/python/library/urllib.robotparser.html - [similar]
What's New in Python 2.7 — Python 3.6.5 ドキュメント 4519
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... utput' , metavar = 'FILE' , help = 'direct output to FILE instead of stdout' ) parser . add_argument ( ' ... = 'NUM' , default = 0 , help = 'display NUM lines of added context' ) # Allow any number of additional ... sage : argparse - example . py [ - h ] [ - v ] [ - o FILE ] [ - C NUM ] [ inputs [ inputs ... ]] Command ... help message and exit - v produce verbose output - o FILE direct output to FILE instead of stdout - C NU ...
https://man.plustar.jp/python/whatsnew/2.7.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 NEXT