Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 130 for No (0.080 sec.)
21.6. urllib.request --- URL を開くための拡張可能なライブラリ — Python 3.6.5 ド... 6188
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 定義しています: urllib.request. urlopen ( url , data=None , [ timeout , ] * , cafile=None , capath=None , ... cadefault=False , context=None ) ¶ URL url を開きます。 url は文字列でも Reques ... t オブジェクトでもかまいません。 data must be an object specifying additional data to be sent to the ... server, or None if no such data is needed. See Request for detai ...
https://man.plustar.jp/python/library/urllib.request.html - [similar]
4. その他の制御フローツール — Python 3.6.5 ドキュメント 6188
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... ' ' ) ... a , b = b , a + b ... print () ... >>> # Now call the function we just defined: ... fib ( 2000 ... 数もややつまらない値ですが値を返しています。この値は None と呼ばれます (これは組み込みの名前です)。 None だ ... ことができます: >>> fib ( 0 ) >>> print ( fib ( 0 )) None フィボナッチ数列の数からなるリストを出力する代わ ... 一つ値を返します。 return の引数となる式がない場合、 None が返ります。関数が終了したときにも None が返りま ...
https://man.plustar.jp/python/tutorial/controlflow.html - [similar]
3. Windows で Python を使う — Python 3.6.5 ドキュメント 6188
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ ... 始すると、2つの選択肢からひとつを選べます: "Install Now" を選択した場合: 管理者権限は 不要です (ただし C ... leInstall=1 SimpleInstallDescription="Just for me, no test suite." (ランチャのインストールを省略するとフ ... <Options> <Option Name= "InstallAllUsers" Value= "no" /> <Option Name= "Include_launcher" Value= "0" /> ... <Option Name= "Include_test" Value= "no" /> <Option Name= "SimpleInstall" Value= "yes" /> ...
https://man.plustar.jp/python/using/windows.html - [similar]
5. ビルド済み配布物を作成する — Python 3.6.5 ドキュメント 6091
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... ss to a platform which the original developer does not; or it could be software periodically grabbing ne ... aries" Vendor vendor (上記参照) Packager packager (none) Provides provides (none) Requires requires (non ... e) Conflicts conflicts (none) Obsoletes obsoletes (none) Distribution distrib ... ution_name (none) BuildRequires build_requires (none) Icon icon ( ...
https://man.plustar.jp/python/distutils/builtdist.html - [similar]
Unicode HOWTO — Python 3.6.5 ドキュメント 6091
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Unic ... ring is turned into a sequence of bytes containing no embedded zero bytes. This avoids byte-ordering iss ... t.txt' , 'r' ) as f : ... except OSError : # 'File not found' error message. print ( "Fichier non trouvé ... ( REPLACEMENT CHARACTER である U+FFFD を使う)、 'ignore' (結果となる Unicode から単に文字を除く) 、 'bac ... \x80abc' >>> b ' \x80 abc' . decode ( "utf-8" , "ignore" ) 'abc' エンコーディングはエンコーディングの名前 ...
https://man.plustar.jp/python/howto/unicode.html - [similar]
26.3. doctest --- 対話的な実行例をテストする — Python 3.6.5 ドキュメント 6091
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... .0) 265252859812191058636308480000000 It must also not be ridiculously large: >>> factorial(1e100) Trace ... ... OverflowError: n too large """ import math if not n >= 0 : raise ValueError ( "n must be >= 0" ) if ... xample`` module: >>> from example import factorial Now use it: >>> factorial(6) 120 doctest.testfile("ex ... o version 3.4, extension modules written in C were not fully searched by doctest. 26.3.3.2. docstring 内 ...
https://man.plustar.jp/python/library/doctest.html - [similar]
27.6. trace --- Python 文実行のトレースと追跡 — Python 3.6.5 ドキュメント 6091
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ファイルを生成します。下記の --coverdir , --file , --no-report も参照してください。 -t , --trace ¶ 実行され ... 潔な概要を標準出力 (stdout) に書き出します。 -R , --no-report ¶ 注釈付きリストを生成しません。これは --co ... ョン ¶ これらのオプションは複数回指定できます。 --ignore-module =<mod> ¶ 指定されたモジュールと(パッケー ... す。引数はカンマ区切りのモジュール名リストです。 --ignore-dir =<dir> ¶ 指定されたディレクトリとサブディレク ...
https://man.plustar.jp/python/library/trace.html - [similar]
26.1. typing --- 型ヒントのサポート — Python 3.6.5 ドキュメント 6091
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ば: from typing import Dict , Tuple , List ConnectionOptions = Dict [ str , str ] Address = Tuple [ str , ... int ] Server = Tuple [ Address , ConnectionOptions ] def broadcast_message ( message : str , se ... rvers : List [ Server ]) -> None : ... # The static type checker will treat the p ... le [ Tuple [ str , int ], Dict [ str , str ]]]) -> None : ... 型ヒントとしての None は特別なケースであり ...
https://man.plustar.jp/python/library/typing.html - [similar]
28.3. venv --- 仮想環境の作成 — Python 3.6.5 ドキュメント 6091
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... [ENV_DIR ...] Creates virtual Python environments in one or more target directories. positional argument ... use symlinks rather than copies, when symlinks are not the default for the platform. --copies Try to use ... pgrade the environment directory to use this version of Python, assuming Python has been upgraded in-pla ... ks=False , upgrade=False , with_pip=False , prompt=None ) ¶ EnvBuilder クラスを実体化するときに、以下のキ ...
https://man.plustar.jp/python/library/venv.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 6091
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... s Pranskevichus < elvis @ magic . io >, Yury Selivanov < yury @ magic . io > この記事では 3.4 と比較した ... ex() memoryview.hex() メソッド。 (Contributed by Arnon Yaari in bpo-9951 .) memoryview クラスが、(複数次 ... 理されるオブジェクトを返します。 (Contributed by Benno Leslie and Yury Selivanov in bpo-24450 .) 新たな例 ... 詳細なことはドキュメントの 非同期イテレータ (Asynchronous Iterator) 節を参照してください。 参考 PEP 492 -- ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT