Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 121 - 130 of about 130 for No (0.278 sec.)
3. データモデル — Python 3.6.5 ドキュメント 5337
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... ん。特殊属性の定義は将来変更される可能性があります。 None この型には単一の値しかありません。この値を持つオ ... だ一つしか存在しません。このオブジェクトは組み込み名 None でアクセスされます。このオブジェクトは、様々な状 ... ことをしめします。例えば、明示的に値を返さない関数は None を返します。 None の真値 (truth value) は偽 (fal ... se) です。 NotImplemented この型には単一の値しかありません。この ...
https://man.plustar.jp/python/reference/datamodel.html - [similar]
7. 単純文 (simple statement) — Python 3.6.5 ドキュメント 5337
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... | assignment_stmt | augmented_assignment_stmt | annotated_assignment_stmt | pass_stmt | del_stmt | retu ... stmt | continue_stmt | import_stmt | global_stmt | nonlocal_stmt 7.1. 式文 (expression statement) ¶ 式文 ... 返さない関数のことです; Python では、プロシジャは値 None を返します) を呼び出すために使います。その他の使 ... ともあります) を値評価します。 対話モードでは、値が None でなければ、値を組み込み関数 repr() で文字列に変 ...
https://man.plustar.jp/python/reference/simple_stmts.html - [similar]
1. コマンドラインと環境 — Python 3.6.5 ドキュメント 5337
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ ... e the .pyc extension (see PEP 488 ). See also PYTHONOPTIMIZE . バージョン 3.5 で変更: Modify .pyc filena ... ョンの文字列 (あるいはそのユニークな短縮形) です: ignore 全ての警告を無視する。 default 明示的にデフォルト ... _interactivehook__ を変更することも出来ます。 PYTHONOPTIMIZE ¶ この変数に空でない文字列を設定するのは -O ... ます。 PYTHONDONTWRITEBYTECODE ¶ If this is set to a non-empty string, Python won't try to write .pyc file ...
https://man.plustar.jp/python/using/cmdline.html - [similar]
What's New in Python 2.1 — Python 3.6.5 ドキュメント 5337
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 出すことで発行できます: warnings . warn ( "feature X no longer supported" ) 最初のパラメータは警告メッセー ... t warnings warnings . filterwarnings ( action = 'ignore' , message = '.*regex module is deprecated' , ca ... ython process exits and cleans up. This isn't very noticeable for integers, but if f() returns an object ... たオブジェクトを返すか、もう存在していないのであれば None を返します。 これでオブジェクトを生き残らせないキ ...
https://man.plustar.jp/python/whatsnew/2.1.html - [similar]
What's New in Python 2.6 — Python 3.6.5 ドキュメント 5337
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... = threading . Lock () with lock : # Critical section of code ... ブロックが実行される前にロックが獲得され ... ext , localcontext # Displays with default precision of 28 digits v = Decimal ( '578' ) print v . sqrt ( ... c = 16 )): # All code in this block uses a precision of 16 digits. # The original context is restored on ... .exc_info() が返す値と同じで、例外が起こらなければ None です)。そのメソッドの戻り値は例外を再送出するかど ...
https://man.plustar.jp/python/whatsnew/2.6.html - [similar]
型オブジェクト — Python 3.6.5 ドキュメント 5228
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... attr ; PyAsyncMethods * tp_as_async ; /* formerly known as tp_compare (Python 2) or tp_reserved (Python ... tp_bases ; PyObject * tp_mro ; /* method resolution order */ PyObject * tp_cache ; PyObject * tp_subcla ... デストラクタ関数へのポインタです。この関数は (単量子 None や Ellipsis の場合のように) インスタンスが決して ... 構造体は、 C レベルで awaitable プロトコルと asynchronous iterator プロトコルを実装するオブジェクトだけに関 ...
https://man.plustar.jp/python/c-api/typeobj.html - [similar]
関数型プログラミング HOWTO — Python 3.6.5 ドキュメント 5228
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 関数 ... なります: for i in iter ( obj ): print ( i ) for i in obj : print ( i ) イテレータは list() や tuple() と ... って最大・最小の要素を返すことができます。 "in" や "not in" 演算子もイテレータに対応しています: X in iter ... せんし、 要素 X がストリームに出てこなければ "in" , "not in" オペレータも戻りません。 イテレータは次に進む ... 'Jul' : 7 , 'Aug' : 8 , 'Sep' : 9 , 'Oct' : 10 , 'Nov' : 11 , 'Dec' : 12 } >>> for key in m : ... print ...
https://man.plustar.jp/python/howto/functional.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 5228
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... def all ( iterable ): for element in iterable : if not element : return False return True any ( iterable ... の対話的文の場合 'single' です。(後者の場合、評価が None 以外である式文が印字されます)。 The optional arg ... ure statements (see PEP 236 ) affect the compilation of source . If neither is present (or both are zero ... If the flags argument is given and dont_inherit is not (or is zero) then the future statements specified ...
https://man.plustar.jp/python/library/functions.html - [similar]
4. 組み込み型 — Python 3.6.5 ドキュメント 5228
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... の要素を返さないメソッドは、コレクション自身ではなく None を返します。 演算には、複数の型でサポートされてい ... るものを次に示します: 偽であると定義されている定数: None と False 数値型におけるゼロ: 0 , 0.0 , 0j , Deci ... ちの一つを返します。) 4.2. ブール演算 --- and , or , not ¶ 以下にブール演算を、優先順位が低い順に示します: ... x (1) x and y x が偽なら x , そうでなければ y (2) not x x が偽なら True , そうでなければ False (3) 注釈 ...
https://man.plustar.jp/python/library/stdtypes.html - [similar]
What's New In Python 3.3 — Python 3.6.5 ドキュメント 5228
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 空の strides , 空の suboffsets を表現するのに以前は None を用いていましたが今ではこれは空のタプルです。 フ ... 特定のエラー条件を捕捉するのが容易になりました。 errno 属性 (または args[0] ) の特定の定数を errno モジュ ... ldProcessError ConnectionError FileExistsError FileNotFoundError InterruptedError IsADirectoryError NotA ... Error ConnectionResetError 新たな例外のおかげで errno の一般的な使い方を避けることが出来ます。 例えば、P ...
https://man.plustar.jp/python/whatsnew/3.3.html - [similar]
PREV 4 5 6 7 8 9 10 11 12 13 NEXT