Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 254 for None (0.077 sec.)
29.9. traceback --- スタックトレースの表示または取得 — Python 3.6.5 ドキュメン... 7443
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... が定義されています: traceback. print_tb ( tb , limit=None , file=None ) ¶ limit が正の場合、トレースバックオ ... abs(limit) 項目を出力します。 limit が省略されるか None の場合、すべての項目が出力されます。 file が省略さ ... れるか None の場合は、 sys.stderr へ出力されます。 そうでない場 ... back. print_exception ( etype , value , tb , limit=None , file=None , chain=True ) ¶ トレースバックオブジェ ...
https://man.plustar.jp/python/library/traceback.html - [similar]
10.1. itertools --- 効率的なループ実行のためのイテレータ生成関数 — Python 3.6.5... 7413
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... [, step] seq[start:stop:step] islice('ABCDEFG', 2, None) --> C D E F G starmap() func, seq func(*seq[0]), ... 要素だけを返すイテレータを作成します。 predicate が None の場合、偽の要素だけを返します。およそ次と等価です ... a x: x%2, range(10)) --> 0 2 4 6 8 if predicate is None : predicate = bool for x in iterable : if not pred ... ( x ): yield x itertools. groupby ( iterable , key=None ) ¶ 同じキーをもつような要素からなる iterable 中の ...
https://man.plustar.jp/python/library/itertools.html - [similar]
19.2. json --- JSON エンコーダおよびデコーダ — Python 3.6.5 ドキュメント 7383
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... on >>> json . dumps ([ 'foo' , { 'bar' : ( 'baz' , None , 1.0 , 2 )}]) '["foo", {"bar": ["baz", null, 1.0, ... ["baz", null, 1.0, 2]}]' ) ['foo', {'bar': ['baz', None, 1.0, 2]}] >>> json . loads ( '" \\ "foo \\ bar"' ... =True , check_circular=True , allow_nan=True , cls=None , indent=None , separators=None , default=None , s ... alse ) ならば、基本型 ( str , int , float , bool , None ) 以外の辞書のキーは TypeError を送出せずに読み飛ば ...
https://man.plustar.jp/python/library/json.html - [similar]
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 7383
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... います: class nntplib. NNTP ( host , port=119 , user=None , password=None , readermode=None , usenetrc=False ... 。 class nntplib. NNTP_SSL ( host , port=563 , user=None , password=None , ssl_context=None , readermode=No ... を記述する文字列です。 サーバが通知していない場合は None です。 バージョン 3.2 で追加. 21.16.1.2. メソッド ... () True バージョン 3.2 で追加. NNTP. login ( user=None , password=None , usenetrc=True ) ¶ Send AUTHINFO ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 7183
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ntation. as_string ( unixfrom=False , maxheaderlen=None , policy=None ) ¶ Return the entire message flatte ... ge class maxheaderlen is accepted, but defaults to None , which means that by default the line length is c ... r as_string() . as_bytes ( unixfrom=False , policy=None ) ¶ Return the entire message flattened as a bytes ... 返します。エンベロープヘッダが設定されていない場合は None が返されます。 The following methods implement the ...
https://man.plustar.jp/python/library/email.message.html - [similar]
20.5. xml.etree.ElementTree --- ElementTree XML API — Python 3.6.5 ドキュメント 7153
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ind が呼ばれた要素) の上位要素への到達を試みた場合 None を返します。 [@attrib] 与えられた属性を持つすべての ... .3.1. 関数 ¶ xml.etree.ElementTree. Comment ( text=None ) ¶ コメント要素のファクトリです。このファクトリ関 ... ee.ElementTree. fromstringlist ( sequence , parser=None ) ¶ 文字列フラグメントのシーケンスから XML ドキュメ ... xml.etree.ElementTree. iterparse ( source , events=None , parser=None ) ¶ XML セクションを構文解析して要素 ...
https://man.plustar.jp/python/library/xml.etree.elementtree.html - [similar]
None オブジェクト — Python 3.6.5 ドキュメント 7024
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ュアル » 具象オブジェクト (concrete object) レイヤ » None オブジェクト ¶ None に対する PyTypeObject は、 Pyt ... API では直接公開されていないので注意してください。 None は単量子 (singleton) なので、オブジェクトの同一性テ ... == ) を使うだけで十分だからです。同じ理由から、 PyNone_Check() 関数はありません。 PyObject * Py_None ¶ Py ... thon における None オブジェクトで、値がないことを表します。このオブジ ...
https://man.plustar.jp/python/c-api/none.html - [similar]
26.5. unittest.mock --- モックオブジェクトライブラリ — Python 3.6.5 ドキュメン... 6964
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ject ( ProductionClass , 'method' , return_value = None ) as mock_method : ... thing = ProductionClass () ... スを指定できます。 class unittest.mock. Mock ( spec=None , side_effect=None , return_value=DEFAULT , wraps= ... None , name=None , spec_set=None , unsafe=False , **kwargs ) ¶ 新し ... クの呼び出しごとに順に値を返します。 side_effect に None を指定した場合には、設定がクリアされます。 return_ ...
https://man.plustar.jp/python/library/unittest.mock.html - [similar]
16.4. argparse --- コマンドラインオプション、引数、サブコマンドのパーサー — Pyt... 6834
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... オブジェクト ¶ class argparse. ArgumentParser ( prog=None , usage=None , description=None , epilog=None , pa ... rmatter , prefix_chars='-' , fromfile_prefix_chars=None , argument_default=None , conflict_handler='error' ... 引数のヘルプの前に表示されるテキスト (デフォルト: none) epilog - 引数のヘルプの後で表示されるテキスト (デ ... フォルト: none) parents - ArgumentParser オブジェクトのリストで、 ...
https://man.plustar.jp/python/library/argparse.html - [similar]
9.4. decimal --- 十進固定及び浮動小数点数の算術演算 — Python 3.6.5 ドキュメント 6834
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... クト ¶ class decimal. Decimal ( value="0" , context=None ) ¶ value に基づいて新たな Decimal オブジェクトを構 ... 数に手を加えずに返します。 compare ( other , context=None ) ¶ 二つの Decimal インスタンスの値を比較します。 ... > Decimal ( '1' ) compare_signal ( other , context=None ) ¶ この演算は compare() とほとんど同じですが、全て ... のように扱われます。 compare_total ( other , context=None ) ¶ 二つの対象を数値によらず抽象表現によって比較し ...
https://man.plustar.jp/python/library/decimal.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT