Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 80 for while (0.078 sec.)
17.7. queue --- 同期キュークラス — Python 3.6.5 ドキュメント 6506
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ーに入れたタスクが完了するのを待つ例: def worker (): while True : item = q . get () if item is None : break d ...
https://man.plustar.jp/python/library/queue.html - [similar]
18.4. selectors --- 高水準の I/O 多重化 — Python 3.6.5 ドキュメント 6506
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... egister ( sock , selectors . EVENT_READ , accept ) while True : events = sel . select () for key , mask in ...
https://man.plustar.jp/python/library/selectors.html - [similar]
18.1. socket --- 低水準ネットワークインターフェイス — Python 3.6.5 ドキュメント 6506
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ept () with conn : print ( 'Connected by' , addr ) while True : data = conn . recv ( 1024 ) if not data : b ... ept () with conn : print ( 'Connected by' , addr ) while True : data = conn . recv ( 1024 ) if not data : b ... K_RAW , socket . CAN_RAW ) s . bind (( 'vcan0' ,)) while True : cf , addr = s . recvfrom ( can_frame_size ) ...
https://man.plustar.jp/python/library/socket.html - [similar]
18.2. ssl --- ソケットオブジェクトに対する TLS/SSL ラッパー — Python 3.6.5 ドキ... 6506
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ストの SSLContext.wrap_socket() メソッドで作ります: while True : newsocket , fromaddr = bindsocket . accept ... # empty data means the client is finished with us while data : if not do_something ( connstream , data ): ... 備が整うのを待つためには、およそ以下のようにします: while True : try : sock . do_handshake () break except s ...
https://man.plustar.jp/python/library/ssl.html - [similar]
4. 組み込み型 — Python 3.6.5 ドキュメント 6506
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... のようなオブジェクトでも真理値として判定でき、 if や while の条件あるいは以下のブール演算の被演算子として使え ... rs of P. (Unnecessary if m and n already coprime.) while m % P == n % P == 0 : m , n = m // P , n // P if n ... 文字列およびバイト列リテラル を参照してください。 While bytes literals and representations are based on AS ... rror . This is done deliberately to emphasise that while many binary formats include ASCII based elements a ...
https://man.plustar.jp/python/library/stdtypes.html - [similar]
7. 単純文 (simple statement) — Python 3.6.5 ドキュメント 6506
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... ::= "break" break 文は、構文としては for ループや while ループの内側でのみ出現することができますが、ループ ... nue_stmt ::= "continue" continue 文は for ループや while ループ内のネストで構文法的にのみ現れますが、ループ ...
https://man.plustar.jp/python/reference/simple_stmts.html - [similar]
9. クラス — Python 3.6.5 ドキュメント 6506
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... 6 を印字し、 x の痕跡は残りません: x . counter = 1 while x . counter < 10 : x . counter = x . counter * 2 p ... び出すことができます。例えば次のコードは: xf = x . f while True : print ( xf ()) hello world を時が終わるまで ...
https://man.plustar.jp/python/tutorial/classes.html - [similar]
What's New in Python 2.5 — Python 3.6.5 ドキュメント 6506
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 単純な例はこんなです: def counter ( maximum ): i = 0 while i < maximum : yield i i += 1 counter(10) を呼び出す ... を許す修正をしました: def counter ( maximum ): i = 0 while i < maximum : val = ( yield i ) # If value provide ... m_Free() are one family that allocates raw memory, while PyObject_Malloc() , PyObject_Realloc() , and PyObj ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
Windows 上の Python FAQ — Python 3.6.5 ドキュメント 6259
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... interactively and have them executed or evaluated while you wait. This is one of Python's strongest featur ...
https://man.plustar.jp/python/faq/windows.html - [similar]
29.7. abc --- 抽象基底クラス — Python 3.6.5 ドキュメント 6259
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... le ( ABC ): @abstractmethod def __iter__ ( self ): while False : yield None def get_iterator ( self ): retu ...
https://man.plustar.jp/python/library/abc.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT