Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 91 - 100 of about 249 for FOR (0.147 sec.)
9.6. random --- 擬似乱数を生成する — Python 3.6.5 ドキュメント 4890
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ne Twister: A 623-dimensionally equidistributed uniform pseudorandom number generator", ACM Transactions ... 数点数(範囲は [0.0, 1.0) )を返します。 random. uniform ( a , b ) ¶ a <= b であれば a <= N <= b 、 b < a ... m float: 0.0 <= x < 1.0 0.37444887175646646 >>> uniform ( 2.5 , 10.0 ) # Random float: 2.5 <= x < 10.0 3. ... ), k = 7 ) . count ( 'H' ) >= 5 >>> sum ( trial () for i in range ( 10000 )) / 10000 0.4169 >>> # Probabi ...
https://man.plustar.jp/python/library/random.html - [similar]
9.7. statistics --- 数理統計関数 — Python 3.6.5 ドキュメント 4890
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... arithmetic mean() of the reciprocals of the data. For example, the harmonic mean of three values a , b a ... en averaging quantities which are rates or ratios, for example speeds. For example: Suppose an investor p ... os of 2.5, 3 and 10. What is the average P/E ratio for the investor's portfolio? >>> harmonic_mean ([ 2.5 ... , 3 , 10 ]) # For an equal investment portfolio. 3.6 Using the arith ...
https://man.plustar.jp/python/library/statistics.html - [similar]
17.5. subprocess --- サブプロセス管理 — Python 3.6.5 ドキュメント 4890
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ified, or universal_newlines is true, file objects for stdin, stdout and stderr are opened in text mode u ... g and errors specified in the call or the defaults for io.TextIOWrapper . For stdin , line ending charact ... nverted to the default line separator os.linesep . For stdout and stderr , all line endings in the output ... will be converted to '\n' . For more information see the documentation of the io.T ...
https://man.plustar.jp/python/library/subprocess.html - [similar]
32.7. tokenize --- Pythonソースのためのトークナイザ — Python 3.6.5 ドキュメント 4890
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... d exact_type that contains the exact operator type for token.OP tokens. For all other token types exact_t ... ermines the source encoding of the file by looking for a UTF-8 BOM or encoding cookie, according to PEP 2 ... BytesIO def decistmt ( s ): """Substitute Decimals for floats in a string of statements. >>> from decimal ... 1.3e-5')*-Decimal ('.1234')/Decimal ('81.7'))" The format of the exponent is inherited from the platform ...
https://man.plustar.jp/python/library/tokenize.html - [similar]
21.10. urllib.robotparser --- robots.txt のためのパーザ — Python 3.6.5 ドキュメ... 4890
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... value of the Crawl-delay parameter from robots.txt for the useragent in question. If there is no such par ... to the useragent specified or the robots.txt entry for this parameter has invalid syntax, return None . バ ... to the useragent specified or the robots.txt entry for this parameter has invalid syntax, return None . バ ...
https://man.plustar.jp/python/library/urllib.robotparser.html - [similar]
21.26. xmlrpc.client --- XML-RPC クライアントアクセス — Python 3.6.5 ドキュメン... 4890
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... handles all the details of translating between conformable Python objects and XML on the wire. 警告 xmlr ... C server. The required first argument is a URI (Uniform Resource Indicator), and will normally be the URL ... y default it is an internal SafeTransport instance for https: URLs and an internal HTTP Transport instanc ... l be translated into XML; the default behaviour is for None to raise a TypeError . This is a commonly-use ...
https://man.plustar.jp/python/library/xmlrpc.client.html - [similar]
ライブラリと拡張 FAQ — Python 3.6.5 ドキュメント 4859
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... うになると、この段階をスキップすることができます。) For third-party packages, search the Python Package In ... try Google or another Web search engine. Searching for "Python" plus a keyword or two for your topic of i ... ort threading , time def thread_task ( name , n ): for i in range ( n ): print ( name , i ) for i in rang ... ): time . sleep ( 0.001 ) # <--------------------! for i in range ( n ): print ( name , i ) for i in rang ...
https://man.plustar.jp/python/faq/library.html - [similar]
Python モジュールのインストール — Python 3.6.5 ドキュメント 4859
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... n environment that allows packages to be installed for use by a particular application, rather than being ... ry of open source licensed packages made available for use by other Python users. Python Packaging Author ... す。 参考 Python Packaging User Guide: Requirements for Installing Packages ... パッケージを現在のユーザ用 ... ly. At this point in time, it will often be easier for users to install these packages by other means rat ...
https://man.plustar.jp/python/installing/index.html - [similar]
18.5.9. asyncio での開発 — Python 3.6.5 ドキュメント 4859
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ことで、明示的にキャンセルすることができます。 wait_for() 関数は、タイムアウト発生時に、待機中のタスクをキ ... loop ) result = future . result ( timeout ) # Wait for the result with a timeout AbstractEventLoop.run_in ... op () asyncio . ensure_future ( bug ()) loop . run_forever () loop . close () 出力: Task exception was ne ... . ensure_future ( handle_exception ()) loop . run_forever () loop . close () AbstractEventLoop.run_until ...
https://man.plustar.jp/python/library/asyncio-dev.html - [similar]
17.4. concurrent.futures -- 並列タスク実行 — Python 3.6.5 ドキュメント 4859
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... cified by setting chunksize to a positive integer. For very long iterables, using a large value for chunk ... size can significantly improve performance compared to the default size of 1. With Threa ... = { executor . submit ( load_url , url , 60 ): url for url in URLS } for future in concurrent . futures . ... sqrt_n = int ( math . floor ( math . sqrt ( n ))) for i in range ( 3 , sqrt_n + 1 , 2 ): if n % i == 0 : ...
https://man.plustar.jp/python/library/concurrent.futures.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 NEXT