Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 161 - 170 of about 213 for return (0.138 sec.)
35.8. pty --- 擬似端末ユーティリティ — Python 3.6.5 ドキュメント 4576
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... = os . read ( fd , 1024 ) script . write ( data ) return data print ( 'Script started, file is' , filename ...
https://man.plustar.jp/python/library/pty.html - [similar]
18.1. socket --- 低水準ネットワークインターフェイス — Python 3.6.5 ドキュメント 4576
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... _data ) - ( len ( cmsg_data ) % fds . itemsize )]) return msg , list ( fds ) 利用できる環境: 主な Unix で利用 ... socket , array def send_fds ( sock , msg , fds ): return sock . sendmsg ([ msg ], [( socket . SOL_SOCKET , ... en ( data ) data = data . ljust ( 8 , b ' \x00 ' ) return struct . pack ( can_frame_fmt , can_id , can_dlc , ... , data = struct . unpack ( can_frame_fmt , frame ) return ( can_id , can_dlc , data [: can_dlc ]) # create a ...
https://man.plustar.jp/python/library/socket.html - [similar]
35.6. termios --- POSIX スタイルの端末制御 — Python 3.6.5 ドキュメント 4576
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ios . tcsetattr ( fd , termios . TCSADRAIN , old ) return passwd 関連キーワード: termios , 端末 , 関数 , キュ ...
https://man.plustar.jp/python/library/termios.html - [similar]
17.1. threading --- スレッドベースの並列処理 — Python 3.6.5 ドキュメント 4576
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ote that Lock is actually a factory function which returns an instance of the most efficient version of the ... acquire() method blocks if necessary until it can return without making the counter negative. If not given, ... larger than zero on entry, decrement it by one and return true immediately. If the internal counter is zero ... is greater than 0), decrement the counter by 1 and return true. Exactly one thread will be awoken by each ca ...
https://man.plustar.jp/python/library/threading.html - [similar]
25.1. tkinter --- Tcl/Tk の Python インタフェース — Python 3.6.5 ドキュメント 4576
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ts # and here we get a callback when the user hits return. # we will have the program print out the value of ... the # application variable when the user hits return self . entrythingy . bind ( '<Key-Return>' , self ...
https://man.plustar.jp/python/library/tkinter.html - [similar]
20.10. xml.sax.handler --- SAX ハンドラの基底クラス — Python 3.6.5 ドキュメント 4576
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 能なエラーに遭遇すると呼び出されます。このメソッドが return したとき、パースの停止が求められています。 ErrorHa ... ションに通知するときに呼び出されます。このメソッドが return したときはパースの継続が求められ、ドキュメント情報 ...
https://man.plustar.jp/python/library/xml.sax.handler.html - [similar]
Python 言語リファレンス — Python 3.6.5 ドキュメント 4576
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... ment) 7.3. assert 文 7.4. pass 文 7.5. del 文 7.6. return 文 7.7. yield 文 7.8. raise 文 7.9. break 文 7.10. ...
https://man.plustar.jp/python/reference/index.html - [similar]
What's New in Python 2.0 — Python 3.6.5 ドキュメント 4576
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... e strings have an encode( [encoding] ) method that returns an 8-bit string in the desired encoding. Encoding ... . value = value def __iadd__ ( self , increment ): return Number ( self . value + increment ) n = Number ( 5 ... ます。ですから以下コード: if dict . has_key ( key ): return dict [ key ] else : dict [ key ] = [] return dict ... [ key ] は、単一の return dict.setdefault(key, []) ステートメントだけで書けま ...
https://man.plustar.jp/python/whatsnew/2.0.html - [similar]
索引 — Python 3.6.5 ドキュメント 4533
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » 索引 – 記号 ! (pdb command) != 演 ... コマンドラインオプション -= augmented assignment -> (return annotation assignment) -? コマンドラインオプション ...
https://man.plustar.jp/python/genindex-%E8%A8%98%E5%8F%B7.html - [similar]
23.1. gettext --- 多言語対応に関する国際化サービス — Python 3.6.5 ドキュメント 4533
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 理する一つの方法を以下に示します: def _ ( message ): return message animals = [ _ ( 'mollusk' ), _ ( 'albatros ... は、以下の例のようなやり方です: def N_ ( message ): return message animals = [ N_ ( 'mollusk' ), N_ ( 'albatr ...
https://man.plustar.jp/python/library/gettext.html - [similar]