Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 61 - 70 of about 331 for OF (0.095 sec.)
8.8. weakref --- 弱参照 — Python 3.6.5 ドキュメント 4986
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... be "live" at the time they are used, so the result of calling the references needs to be checked before ... hod ( c . method ) >>> r () <bound method C.method of <__main__.C object at 0x7fc859830220>> >>> r ()() ... ll never invoke its callback during the later part of the interpreter shutdown when module globals are l ... s alive then mark it as dead and return the result of calling func(*args, **kwargs) . If self is dead th ...
https://man.plustar.jp/python/library/weakref.html - [similar]
Python 2 から Python 3 への移植 — Python 3.6.5 ドキュメント 4958
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... sign APIs that can take both due to the difficulty of keeping the code working; as stated earlier it is ... th the bytes type from Python 3 (which is a subset of str in Python 2 and acts as an alias for bytes typ ... n 3). The following table lists the unique methods of each data type across Python 2 & 3 (e.g., the deco ... Python 3 doesn't have the method). Do note that as of Python 3.5 the __mod__ method was added to the byt ...
https://man.plustar.jp/python/howto/pyporting.html - [similar]
9.6. random --- 擬似乱数を生成する — Python 3.6.5 ドキュメント 4958
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... >> # Deal 20 cards without replacement from a deck of 52 playing cards >>> # and determine the proportio ... n of cards with a ten-value >>> # (a ten, jack, queen, ... 'tens' ) / 20 0.15 >>> # Estimate the probability of getting 5 or more heads from 7 spins >>> # of a bi ... ased coin that settles on heads 60% of the time. >>> trial = lambda : choices ( 'HT' , cu ...
https://man.plustar.jp/python/library/random.html - [similar]
3. Defining Extension Types: Assorted Topics — Python 3.6.5 ドキュメント 4903
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... h ; ternaryfunc tp_call ; reprfunc tp_str ; getattrofunc tp_getattro ; setattrofunc tp_setattro ; /* Fun ... Procs * tp_as_buffer ; /* Flags to define presence of optional/expanded features */ unsigned long tp_fla ... /* weak reference enabler */ Py_ssize_t tp_weaklistoffset ; /* Iterators */ getiterfunc tp_iter ; iterne ... et ; descrsetfunc tp_descr_set ; Py_ssize_t tp_dictoffset ; initproc tp_init ; allocfunc tp_alloc ; newf ...
https://man.plustar.jp/python/extending/newtypes.html - [similar]
用語集 — Python 3.6.5 ドキュメント 4876
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ ... ド例でよく出てきます。 ... The default Python prompt of the interactive shell when entering code for an in ... dented code block or within a pair of matching left and right delimiters (parentheses, s ... eturned by __anext__() , it picks-up where it left-off. See PEP 492 and PEP 525 . asynchronous iterable ... 式) 何かの値と評価される、一まとまりの構文 (a piece of syntax) です。言い換えると、式とはリテラル、名前、 ...
https://man.plustar.jp/python/glossary.html - [similar]
16.3. time --- 時刻データへのアクセスと変換 — Python 3.6.5 ドキュメント 4876
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e() は可能なかぎり最も正確な時刻を (Unix の gettimeofday() があればそれを使って) 返します。また sleep() ... る struct tm メンバーをサポートしている場合、 tm_gmtoff および tm_zone 属性が拡張されるようになりました。 ... バージョン 3.6 で変更: struct_time の属性 tm_gmtoff および tm_zone が全てのプラットフォームで利用でき ... . time. clock_gettime ( clk_id ) ¶ Return the time of the specified clock clk_id . Refer to Clock ID Con ...
https://man.plustar.jp/python/library/time.html - [similar]
13.5. zipfile --- ZIP アーカイブの処理 — Python 3.6.5 ドキュメント 4876
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... d=None , * , force_zip64=False ) ¶ Access a member of the archive as a binary file-like object. name can ... be either the name of a file within the archive or a ZipInfo object. The ... next__() . These objects can operate independently of the ZipFile. With mode='w' , a writable file handl ... 4=True to ensure that the header format is capable of supporting large files. If the file size is known ...
https://man.plustar.jp/python/library/zipfile.html - [similar]
35.11. resource --- リソース使用状態の情報 — Python 3.6.5 ドキュメント 4848
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... きます。各リソースは二つ組の制限値: ソフトリミット (soft limit) 、およびハードリミット (hard limit) 、で制 ... e の現在のソフトおよびハードリミットを表すタプル (soft, hard) を返します。無効なリソースが指定された場合 ... たな消費制限を設定します。 limits 引数には、タプル (soft, hard) による二つの整数で、新たな制限を記述しなけ ... スが生成できるプロセスの上限です。 resource. RLIMIT_NOFILE ¶ 現在のプロセスが開けるファイル記述子の上限です ...
https://man.plustar.jp/python/library/resource.html - [similar]
What's New in Python 2.4 — Python 3.6.5 ドキュメント 4848
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... : %(title)s ' % { 'page' : 2 , 'title' : 'The Best of Times' } '2: The Best of Times' テンプレート文字列 ... t . substitute ({ 'page' : 2 , 'title' : 'The Best of Times' }) '2: The Best of Times' 辞書にキーが見つか ... からです。しばしばこれは、コードが C ライブラリの atof() 関数を使っていることに原因がありました。 Not set ... とです: PyOS_ascii_strtod(str, ptr) と PyOS_ascii_atof(str, ptr) はともに、文字列を C の double に変換しま ...
https://man.plustar.jp/python/whatsnew/2.4.html - [similar]
What's New In Python 3.2 — Python 3.6.5 ドキュメント 4848
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... l' ) >>> 'The {project_name} status is {status} as of {date} ' . format_map ( d ) 'The testing project s ... tatus is green as of February 15, 2011' >>> class LowerCasedDict ( dict ... sues, especially under Windows. Here is an example of enabling the warning from the command line: $ pyth ... Barrier Synchronization Patterns for more examples of how barriers can be used in parallel computing. Al ...
https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 NEXT