Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 111 - 120 of about 273 for THE (0.306 sec.)
What's New in Python 2.1 — Python 3.6.5 ドキュメント 4757
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 少し明確にするため、例を挙げます: x = 1 def f (): # The next line is a syntax error exec 'x=2' def g (): r ... すいでしょう。) これらの特殊メソッドは method(self, other) の形式になっており、 self が演算子の左辺、 other ... : >>> import regex __main__:1: DeprecationWarning: the regex module is deprecated; please use the re modu ... x ): return _cache [ x ] retval = f ( x ) # Cache the returned object _cache [ x ] = retval return retva ...
https://man.plustar.jp/python/whatsnew/2.1.html - [similar]
一般 Python FAQ — Python 3.6.5 ドキュメント 4728
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... されています。Python を利用して役立ったと感じたら、 the PSF donation page で貢献をお願いします。 Python を ... です。 ライセンスのより詳しい説明と全文へのリンクは the PSF license page を参照してください。 Python のロゴ ... いて、使用に許可が必要な場合があります。詳しい情報は the Trademark Usage Policy を参照してください。 そもそ ... たる問題に適用できる高水準な汎用プログラム言語です。 The language comes with a large standard library that ...
https://man.plustar.jp/python/faq/general.html - [similar]
1. C や C++ による Python の拡張 — Python 3.6.5 ドキュメント 4708
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... な例 ¶ Let's create an extension module called spam (the favorite food of Monty Python fans...) and let's s ... ay we want to create a Python interface to the C library function system() [1] . This function ta ... e NULL */ -1 , /* size of per-interpreter state of the module, or -1 if the module keeps state in global ... ittab ( "spam" , PyInit_spam ); /* Pass argv[0] to the Python interpreter */ Py_SetProgramName ( program ...
https://man.plustar.jp/python/extending/extending.html - [similar]
8.3. collections --- コンテナデータ型 — Python 3.6.5 ドキュメント 4708
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ke Python's nonlocals d [ 'x' ] # Get first key in the chain of contexts d [ 'x' ] = 1 # Set value in cur ... >>> d [ 'snake' ] = 'red' # new keys get added to the topmost dict >>> del d [ 'elephant' ] # remove an ... nter({'blue': 3, 'red': 2, 'green': 1}) >>> # Find the ten most common words in Hamlet >>> import re >>> ... ()) >>> Counter ( words ) . most_common ( 10 ) [('the', 1143), ('and', 966), ('to', 762), ('of', 669), ( ...
https://man.plustar.jp/python/library/collections.html - [similar]
19.1.13. email.encoders: エンコーダ — Python 3.6.5 ドキュメント 4708
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... コード: Lib/email/encoders.py This module is part of the legacy ( Compat32 ) email API. In the new API the ... functionality is provided by the cte parameter of the set_content() method. The rem ... aining text in this section is the original documentation of the module. 何もないとこ ...
https://man.plustar.jp/python/library/email.encoders.html - [similar]
11. 標準ライブラリミニツアー --- その 2 — Python 3.6.5 ドキュメント 4708
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... るように調整します: >>> import textwrap >>> doc = """The wrap() method is just like fill() except that it r ... ad of one big string with newlines to separate ... the wrapped lines.""" ... >>> print ( textwrap . fill ... ( doc , width = 40 )) The wrap() method is just like fill() except that it r ... nstead of one big string with newlines to separate the wrapped lines. locale モジュールは、文化により異な ...
https://man.plustar.jp/python/tutorial/stdlib2.html - [similar]
シーケンス型プロトコル (sequence protocol) — Python 3.6.5 ドキュメント 4689
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... int PySequence_Check ( PyObject *o ) ¶ Return 1 if the object provides sequence protocol, and 0 otherwise ... n value: New reference. Return a tuple object with the same contents as the arbitrary sequence o or NULL ... f o is a tuple, a new reference will be returned, otherwise a tuple will be constructed with the appropri ... ate contents. This is equivalent to the Python expression tuple(o) . PyObject * PySequence ...
https://man.plustar.jp/python/c-api/sequence.html - [similar]
31.5. importlib --- import の実装 — Python 3.6.5 ドキュメント 4689
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... Finder ( deprecated ) | +-- MetaPathFinder | +-- PathEntryFinder +-- Loader +-- ResourceLoader --------+ ... ョン 3.3 で非推奨: 代わりに MetaPathFinder または PathEntryFinder を使ってください。 abstractmethod find_m ... one ) ¶ An abstact method for finding a loader for the specified module. Originally specified in PEP 302 ... s method was meant for use in sys.meta_path and in the path-based import subsystem. バージョン 3.4 で変更 ...
https://man.plustar.jp/python/library/importlib.html - [similar]
25.1. tkinter --- Tcl/Tk の Python インタフェース — Python 3.6.5 ドキュメント 4689
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ンタフェース ¶ ソースコード: Lib/tkinter/__init__.py The tkinter package ("Tk interface") is the standard P ... ython interface to the Tk GUI toolkit. Both Tk and tkinter are available ... d on your system by running python -m tkinter from the command line; this should open a window demonstrat ... リファレンスです。 Tcl/Tk manual Official manual for the latest tcl/tk version. Programming Python マーク・ ...
https://man.plustar.jp/python/library/tkinter.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 4659
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... の場合、評価が None 以外である式文が印字されます)。 The optional arguments flags and dont_inherit control ... which future statements (see PEP 236 ) affect the compilation of source . If neither is present (or ... both are zero) the code is compiled with those future statements that ... are in effect in the code that is calling compile() . If the flags argu ...
https://man.plustar.jp/python/library/functions.html - [similar]