Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 111 for argument (0.099 sec.)
9. クラス — Python 3.6.5 ドキュメント 6043
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... d object. When the method object is called with an argument list, a new argument list is constructed from the ... instance object and the argument list, and the function object is called with this ... new argument list. 9.3.5. クラスとインスタンス変数 ¶ 一般的に、 ... 方法があります。単に BaseClassName.methodname(self, arguments) を呼び出すだけです。この仕様は、場合によってはク ...
https://man.plustar.jp/python/tutorial/classes.html - [similar]
16.16. ctypes --- Pythonのための外部関数ライブラリ — Python 3.6.5 ドキュメント 5993
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... eError : Procedure probably called with not enough arguments (4 bytes missing) >>> >>> windll . msvcrt . print ... lueError : Procedure probably called with too many arguments (4 bytes in excess) >>> 正しい呼び出し規約を知るた ... call last): File "<stdin>" , line 1 , in <module> ArgumentError : argument 2: exceptions.TypeError: Don't kno ... call last): File "<stdin>" , line 1 , in <module> ArgumentError : argument 2: exceptions.TypeError: wrong typ ...
https://man.plustar.jp/python/library/ctypes.html - [similar]
16.6. logging --- Python 用ロギング機能 — Python 3.6.5 ドキュメント 5993
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... am to initialize the StreamHandler. Note that this argument is incompatible with 'filename' - if both are pres ... formatter created in this function. Note that this argument is incompatible with 'filename' or 'stream' - if b ... eError is raised. バージョン 3.2 で変更: The style argument was added. バージョン 3.3 で変更: The handlers arg ... were added to catch situations where incompatible arguments are specified (e.g. handlers together with stream ...
https://man.plustar.jp/python/library/logging.html - [similar]
21.6. urllib.request --- URL を開くための拡張可能なライブラリ — Python 3.6.5 ド... 5993
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... Content-Type header should be included if the data argument is present. If this header has not been provided a ... 例外は urlopen() のものと同じになります。 The second argument, if present, specifies the file location to copy t ... ll be a tempfile with a generated name). The third argument, if present, is a hook function that will be calle ... ock read thereafter. The hook will be passed three arguments; a count of blocks transferred so far, a block si ...
https://man.plustar.jp/python/library/urllib.request.html - [similar]
13.1. zlib --- gzip 互換の圧縮 — Python 3.6.5 ドキュメント 5993
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... , the only supported value is DEFLATED . The wbits argument controls the size of the history buffer (or the "w ... 6 で変更: wbits and bufsize can be used as keyword arguments. zlib. decompressobj ( wbits=MAX_WBITS [ , zdict ... ョン 3.6 で変更: max_length can be used as a keyword argument. Decompress. flush ( [ length ] ) ¶ 未処理の入力デ ...
https://man.plustar.jp/python/library/zlib.html - [similar]
8. 複合文 (compound statement) — Python 3.6.5 ドキュメント 5993
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... = decorator + decorator ::= "@" dotted_name ["(" [ argument_list [","]] ")"] NEWLINE dotted_name ::= identifie ... を持つ仮引数では、呼び出し時にそれに対応する実引数 ( argument ) は省略でき、その場合は仮引数のデフォルト値が使わ ... me [ inheritance ] ":" suite inheritance ::= "(" [ argument_list ] ")" classname ::= identifier クラス定義は実 ...
https://man.plustar.jp/python/reference/compound_stmts.html - [similar]
14.2. configparser --- 設定ファイルのパーサー — Python 3.6.5 ドキュメント 5942
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... . read ( 'example.cfg' ) # Set the optional *raw* argument of get() to True if you wish to disable # interpol ... ) # -> "%(bar)s is %(baz)s!" # The optional *vars* argument is a dict with members that will take # precedence ... on' , 'baz' : 'evil' })) # The optional *fallback* argument can be used to provide a fallback value print ( cf ...
https://man.plustar.jp/python/library/configparser.html - [similar]
19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 5942
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... but they can be cloned, accepting the same keyword arguments as the class constructor and returning a new Poli ... Some email package methods accept a policy keyword argument, allowing the policy to be overridden for that met ... or of a policy class can be passed various keyword arguments. The arguments that may be specified are any non- ... ose attributes are given new values by the keyword arguments. The remaining Policy methods are called by the e ...
https://man.plustar.jp/python/library/email.policy.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 5942
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... None 以外である式文が印字されます)。 The optional arguments flags and dont_inherit control which future state ... the code that is calling compile() . If the flags argument is given and dont_inherit is not (or is zero) then ... the future statements specified by the flags argument are used in addition to those that would be used a ... dont_inherit is a non-zero integer then the flags argument is it -- the future statements in effect around th ...
https://man.plustar.jp/python/library/functions.html - [similar]
34.4. winsound --- Windows 用の音声再生インタフェース — Python 3.6.5 ドキュメン... 5942
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ays a sound as specified in the registry. The type argument specifies which sound to play; possible values are ...
https://man.plustar.jp/python/library/winsound.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT