Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 102 for args (0.282 sec.)
24.1. turtle --- タートルグラフィックス — Python 3.6.5 ドキュメント 6095
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... () True 24.1.3.4.2. 色の制御 ¶ turtle. pencolor ( *args ) ¶ ペンの色(pencolor)を設定するかまたは返します。 ... color () (50.0, 193.0, 143.0) turtle. fillcolor ( *args ) ¶ 塗りつぶしの色(fillcolor)を設定するかまたは返し ... illcolor () (255.0, 255.0, 255.0) turtle. color ( *args ) ¶ ペンの色(pencolor)と塗りつぶしの色(fillcolor)を ... す。 24.1.4.1. ウィンドウの制御 ¶ turtle. bgcolor ( *args ) ¶ パラメータ: args -- 色文字列または 0 から colo ...
https://man.plustar.jp/python/library/turtle.html - [similar]
What's New in Python 2.6 — Python 3.6.5 ドキュメント 6095
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... Queue () N = 5 p = Process ( target = factorial , args = ( queue , N )) p . start () p . join () result = ... しい関数のシグネチャは以下の通りです: def print ( * args , sep = ' ' , end = ' \n ' , file = None ) パラメー ... タは以下のとおりです: args : 出力される値を指定する位置引数リスト。 sep : 引数 ... リスト args を出力するのに使われる区切り文字。 end : 引数リスト ...
https://man.plustar.jp/python/whatsnew/2.6.html - [similar]
What's New In Python 3.0 — Python 3.6.5 ドキュメント 6095
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... オンリー (keyword-only) 引数。パラメータリスト中で *args のあとに現れる名前付きパラメータは、呼び出す際には ... 外はシーケンスとして振る舞わなくなりました。代わりに args 属性を使用してください。 PEP 3109 : 例外の送出。 r ... aise Exception , args ではなく raise Exception ( args ) としなければなり ... に移動しました。 apply() は削除されました。 apply(f, args) の代わりに f(*args) を使用してください。 callable ...
https://man.plustar.jp/python/whatsnew/3.0.html - [similar]
19.1.7. email.contentmanager: MIME 内容の管理 — Python 3.6.5 ドキュメント 6056
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... set_content dispatch methods. get_content ( msg , *args , **kw ) ¶ Look up a handler function based on the ... for the full MIME type. set_content ( msg , obj , *args , **kw ) ¶ If the maintype is multipart , raise a ...
https://man.plustar.jp/python/library/email.contentmanager.html - [similar]
27.3. pdb --- Python デバッガ — Python 3.6.5 ドキュメント 6056
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 関数は run() と同様です。 pdb. runcall ( function , *args , **kwds ) ¶ function (関数またはメソッドオブジェク ... obals=None , locals=None ) ¶ runcall ( function , *args , **kwds ) ¶ set_trace ( ) ¶ 前述のこれら関数のドキ ... ist_options ; list_options = [ '-l' ] ( Pdb ) run [args ...] ¶ restart [args ...] ¶ デバッグ中のプログラム ...
https://man.plustar.jp/python/library/pdb.html - [similar]
What's New in Python 2.0 — Python 3.6.5 ドキュメント 6056
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... はビルトイン関数 apply() を使っていました: apply(f, args, kw) は引数タプル args と辞書 kw に入れたキーワード ... かげで、同じ効果を得るのにより短くてわかりやすい f(*args, **kw) が使えます。この構文は以下のような関数定義に ... 呼応するものです: def f ( * args , ** kw ): # args is a tuple of positional args, # ... kw is a dictionary of keyword args ... print 文がUnix シェルのリダイレクト操作のように ...
https://man.plustar.jp/python/whatsnew/2.0.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 6056
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ョンのサポートの改善 。 新たな組み込み機能: bytes % args , bytearray % args : PEP 461 -- bytes と bytearray ... .) The UserString class now implements the __getnewargs__() , __rmod__() , casefold() , format_map() , isp ... missing arguments: >>> def foo ( a , b = 'ham' , * args ): pass >>> ba = inspect . signature ( foo ) . bin ... uments OrderedDict([('a', 'spam'), ('b', 'ham'), ('args', ())]) (Contributed by Yury Selivanov in bpo-2419 ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
DateTime オブジェクト — Python 3.6.5 ドキュメント 6004
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... す: PyObject * PyDateTime_FromTimestamp ( PyObject *args ) ¶ Return value: New reference. datetime.datetime ... します。 PyObject * PyDate_FromTimestamp ( PyObject *args ) ¶ Return value: New reference. datetime.date.fro ...
https://man.plustar.jp/python/c-api/datetime.html - [similar]
型オブジェクト — Python 3.6.5 ドキュメント 6004
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... isitproc visit , void * arg ) { Py_VISIT ( self -> args ); Py_VISIT ( self -> kw ); Py_VISIT ( self -> dic ... f ) { Py_CLEAR ( self -> key ); Py_CLEAR ( self -> args ); Py_CLEAR ( self -> kw ); Py_CLEAR ( self -> dic ... おりです int tp_init ( PyObject * self , PyObject * args , PyObject * kwds ) self 引数は初期化するインスタン ... スです; args および kwds 引数は、 __init__() を呼び出す際の位置 ...
https://man.plustar.jp/python/c-api/typeobj.html - [similar]
1. 他のアプリケーションへの Python の埋め込み — Python 3.6.5 ドキュメント 6004
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... Name , * pModule , * pDict , * pFunc ; PyObject * pArgs , * pValue ; int i ; if ( argc < 3 ) { fprintf ( s ... tderr , "Usage: call pythonfile funcname [args] \n " ); return 1 ; } Py_Initialize (); pName = Py ... ce */ if ( pFunc && PyCallable_Check ( pFunc )) { pArgs = PyTuple_New ( argc - 3 ); for ( i = 0 ; i < argc ... ( argv [ i + 3 ])); if ( ! pValue ) { Py_DECREF ( pArgs ); Py_DECREF ( pModule ); fprintf ( stderr , "Cann ...
https://man.plustar.jp/python/extending/embedding.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT