Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 6 of about 6 for parrot (0.018 sec.)
4. その他の制御フローツール — Python 3.6.5 ドキュメント 13179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... って呼び出すこともできます。例えば、以下の関数: def parrot ( voltage , state = 'a stiff' , action = 'voom' , ... type = 'Norwegian Blue' ): print ( "-- This parrot wouldn't" , action , end = ' ' ) print ( "if you p ... ます。この関数は以下のいずれかの方法で呼び出せます: parrot ( 1000 ) # 1 positional argument parrot ( voltage ... = 1000 ) # 1 keyword argument parrot ( voltage = 1000000 , action = 'VOOOOOM' ) # 2 key ...
https://man.plustar.jp/python/tutorial/controlflow.html - [similar]
1. C や C++ による Python の拡張 — Python 3.6.5 ドキュメント 8810
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... ます: #include "Python.h" static PyObject * keywdarg_parrot ( PyObject * self , PyObject * args , PyObject * k ... action , & type )) return NULL ; printf ( "-- This parrot wouldn't %s if you put %i Volts through it. \n " , ... * only take two PyObject* parameters, and keywdarg_parrot() takes * three. */ { "parrot" , ( PyCFunction ) k ... eywdarg_parrot , METH_VARARGS | METH_KEYWORDS , "Print a lovely s ...
https://man.plustar.jp/python/extending/extending.html - [similar]
21.12. http.client --- HTTP プロトコルクライアント — Python 3.6.5 ドキュメント 8262
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... an invalid request >>> conn . request ( "GET" , "/parrot.spam" ) >>> r2 = conn . getresponse () >>> print ( ...
https://man.plustar.jp/python/library/http.client.html - [similar]
8.11. pprint --- データ出力の整然化 — Python 3.6.5 ドキュメント 8262
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... erjack' , ( 'knights' , ( 'ni' , ( 'dead' , ... ( 'parrot' , ( 'fresh fruit' ,)))))))) >>> pp = pprint . Pre ...
https://man.plustar.jp/python/library/pprint.html - [similar]
What's New in Python 2.6 — Python 3.6.5 ドキュメント 8262
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ます: >>> import json >>> data = { "spam" : "foo" , "parrot" : 42 } >>> in_json = json . dumps ( data ) # Enco ... de the data >>> in_json '{"parrot": 42, "spam": "foo"}' >>> json . loads ( in_json ) ... # Decode into a Python object {"spam": "foo", "parrot": 42} ほかの何か型をサポートするのに独自のエンコー ...
https://man.plustar.jp/python/whatsnew/2.6.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 8042
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ば、読み出し専用 property を作るのは容易です: class Parrot : def __init__ ( self ): self . _voltage = 100000 ...
https://man.plustar.jp/python/library/functions.html - [similar]
PREV 1 NEXT