Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 141 - 150 of about 156 for all (0.149 sec.)
5. データ構造 — Python 3.6.5 ドキュメント 4960
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... 演算で逆順にします。 list. copy ( ) リストの浅い (shallow) コピーを返します。 a[:] と等価です。 以下にリス ... ec if x >= 0 ] [0, 2, 4] >>> # apply a function to all the elements >>> [ abs ( x ) for x in vec ] [4, 2, ... 0, 2, 4] >>> # call a method on each element >>> freshfruit = [ ' bana ... table: ... t [ 0 ] = 88888 Traceback (most recent call last): File "<stdin>" , line 1 , in <module> TypeE ...
https://man.plustar.jp/python/tutorial/datastructures.html - [similar]
What's New in Python 2.7 — Python 3.6.5 ドキュメント 4960
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... PI 関数 新しい Python3 モード Warning: operator.isCallable() と operator.sequenceIncludes() は 3.x ではサ ... , help = 'display NUM lines of added context' ) # Allow any number of additional arguments. parser . add ... er' : 'standard' , 'level' : 'ERROR' }}, # Specify all the subordinate loggers 'loggers' : { 'network' : ... : ... d [ k * 2 ] = k ... Traceback (most recent call last): File "<stdin>" , line 1 , in <module> Runti ...
https://man.plustar.jp/python/whatsnew/2.7.html - [similar]
What's New In Python 3.4 — Python 3.6.5 ドキュメント 4960
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... な 数値的に安定な統計ライブラリ ( PEP 450 )。 tracemalloc : Python のメモリ割り当てのトレース ( PEP 454 )。 ... ) inspect と pydoc が以前よりも遥かに幅広い種類の callable オブジェクトを正しくイントロスペクション出来る ... on の source builds on POSIX systems では make install , make altinstall コマンドはデフォルトで pip ブート ... abcdef" . decode ( "hex" ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> Looku ...
https://man.plustar.jp/python/whatsnew/3.4.html - [similar]
型オブジェクト — Python 3.6.5 ドキュメント 4844
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... */ Py_ssize_t tp_basicsize , tp_itemsize ; /* For allocation */ /* Methods to implement standard operati ... ons */ destructor tp_dealloc ; printfunc tp_print ; getattrfunc tp_getattr ; ... mpatibility) */ hashfunc tp_hash ; ternaryfunc tp_call ; reprfunc tp_str ; getattrofunc tp_getattro ; set ... nst char * tp_doc ; /* Documentation string */ /* call function for all accessible objects */ traversepro ...
https://man.plustar.jp/python/c-api/typeobj.html - [similar]
10. API リファレンス — Python 3.6.5 ドキュメント 4844
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... が追加されました。 distutils.archive_util. make_tarball ( base_name , base_dir [ , compress='gzip' , verbo ... ンドの"ファミリー"を定式化したものです。たとえば install はサブコマンド install_lib install_headers などの親 ... わしいかどうか判断するものを指定します。 (例えば install_headers はインストールするべき Cヘッダファイルがあ ... に定義されている必要があるためです。標準的な例は install コマンドです。 10.25. distutils.command --- Distut ...
https://man.plustar.jp/python/distutils/apiref.html - [similar]
プログラミング FAQ — Python 3.6.5 ドキュメント 4844
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... ror になります: >>> foo () Traceback (most recent call last): ... UnboundLocalError : local variable 'x' ... = {}): # Danger: shared reference to one dict for all calls ... compute something ... mydict [ key ] = v ... は "memoizing" と呼ばれ、このように実装されます: # Callers will never provide a third parameter for this f ... クラスインスタンスに値を同梱することによって: class callByRef : def __init__ ( self , ** args ): for ( key ...
https://man.plustar.jp/python/faq/programming.html - [similar]
用語集 — Python 3.6.5 ドキュメント 4844
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ ... てられます。割り当てを行う規則については 呼び出し (call) を参照してください。シンタックスにおいて実引数を表 ... mbers one at a time. Examples of iterables include all sequence types (such as list , str , and tuple ) a ... the set of values. When using iterables, it is usually not necessary to call iter() or deal with iterato ... cts yourself. The for statement does that automatically for you, creating a temporary unnamed variable to ...
https://man.plustar.jp/python/glossary.html - [similar]
16.4. argparse --- コマンドラインオプション、引数、サブコマンドのパーサー — Pyt... 4844
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... =None , conflict_handler='error' , add_help=True , allow_abbrev=True ) ¶ 新しい ArgumentParser オブジェク ... オプションをパーサーに追加する (デフォルト: True ) allow_abbrev - 長いオプションが先頭の 1 文字に短縮可能 ... 許可する。(デフォルト: True ) バージョン 3.5 で変更: allow_abbrev 引数が追加されました。 以下の節では各オプ ... exit RawTextHelpFormatter maintains whitespace for all sorts of help text, including argument description ...
https://man.plustar.jp/python/library/argparse.html - [similar]
7.2. codecs --- codec レジストリと基底クラス — Python 3.6.5 ドキュメント 4844
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ほとんどあり得ない (たとえば iso-8859-1 では LATIN SMALL LETTER I WITH DIAERESIS RIGHT-POINTING DOUBLE ANGL ... サポートするためのプロトコルを定義しています。 ( www.Alliancefrançaise.nu のような) 非 ASCII 文字を含むドメ ... SCII と互換性のあるエンコーディング (ACE、 www.xn--alliancefranaise-npb.nu のような形式) に変換されます。 ... stname in the Host field if it sends that field at all). (逆引きなどによって) ネットワーク越しにホスト名を ...
https://man.plustar.jp/python/library/codecs.html - [similar]
9.4. decimal --- 十進固定及び浮動小数点数の算術演算 — Python 3.6.5 ドキュメント 4844
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... True >>> Decimal ( 3.14 ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> decim ... >> Decimal ( '3.5' ) < 3.7 Traceback (most recent call last): File "<stdin>" , line 1 , in <module> decim ... "1e9999999999999999999" ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> decim ... mal ( 42 ) / Decimal ( 0 ) Traceback (most recent call last): File "<pyshell#143>" , line 1 , in -topleve ...
https://man.plustar.jp/python/library/decimal.html - [similar]
PREV 6 7 8 9 10 11 12 13 14 15 16 NEXT