Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 121 - 130 of about 213 for Return (0.175 sec.)
27.5. timeit --- 小さなコード断片の実行時間計測 — Python 3.6.5 ドキュメント 4776
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ) repeatedly so that the total time >= 0.2 second, returning the eventual (number of loops, time taken for t ... それぞれでインポートするより 便利です: def f ( x ): return x ** 2 def g ( x ): return x ** 4 def h ( x ): ret ...
https://man.plustar.jp/python/library/timeit.html - [similar]
21.4. wsgiref --- WSGI ユーティリティとリファレンス実装 — Python 3.6.5 ドキュメ... 4776
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ( "utf-8" ) for key , value in environ . items ()] return ret with make_server ( '' , 8000 , simple_app ) as ... . validator ( application ) ¶ Wrap application and return a new WSGI application object. The returned applic ... ders ) # This is going to break because we need to return a list, and # the validator is going to inform us ... os.environ to PEP 3333 "bytes in unicode" strings, returning a new dictionary. This function is used by CGIH ...
https://man.plustar.jp/python/library/wsgiref.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 4776
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... f を用いて定義されます: >>> async def coro (): ... return 'spam' コルーチン関数内で、新たな await 式を用いる ... 簡単な関数です: def greeting ( name : str ) -> str : return 'Hello ' + name これらのアノテーションは実行時に通 ... outerframes() , and getinnerframes() functions now return a list of named tuples. (Contributed by Daniel Sha ... ribute for the IPv4Network and IPv6Network classes returns the name of the reverse DNS PTR record: >>> impor ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
型オブジェクト — Python 3.6.5 ドキュメント 4734
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... y_VISIT ( self -> kw ); Py_VISIT ( self -> dict ); return 0 ; } Py_VISIT() が循環参照になる恐れのあるメンバに ... y_CLEAR ( self -> kw ); Py_CLEAR ( self -> dict ); return 0 ; } 参照のクリアはデリケートなので、 Py_CLEAR() ... st be filled for the PyMapping_Check() function to return 1 , it can be NULL otherwise. objobjargproc PyMapp ... t be filled for the PySequence_Check() function to return 1 , it can be NULL otherwise. 負のインデックスは次 ...
https://man.plustar.jp/python/c-api/typeobj.html - [similar]
35.5. crypt --- Unix パスワードをチェックするための関数 — Python 3.6.5 ドキュメ... 4734
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... adow passwords' ) cleartext = getpass . getpass () return compare_hash ( crypt . crypt ( cleartext , crypted ... passwd ), cryptedpasswd ) else : return True 利用可能な方式のうち最も強い方式を使いパスワー ...
https://man.plustar.jp/python/library/crypt.html - [similar]
16.16. ctypes --- Pythonのための外部関数ライブラリ — Python 3.6.5 ドキュメント 4734
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e ): ... if value == 0 : ... raise WinError () ... return value ... >>> >>> GetModuleHandle . restype = Vali ... ents c_long(42) >>> ctypes は OOR (original object return 、元のオブジェクトを返すこと) ではないことに注意し ... ... print ( "py_cmp_func" , a [ 0 ], b [ 0 ]) ... return 0 ... >>> cmp_func = CMPFUNC ( py_cmp_func ) >>> 結 ... ... print ( "py_cmp_func" , a [ 0 ], b [ 0 ]) ... return a [ 0 ] - b [ 0 ] ... >>> >>> qsort ( ia , len ( i ...
https://man.plustar.jp/python/library/ctypes.html - [similar]
21.13. ftplib --- FTPプロトコルクライアント — Python 3.6.5 ドキュメント 4734
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... , acct='' , timeout=None , source_address=None ) ¶ Return a new instance of the FTP class. When host is give ... ormation desired (e.g. ["type", "size", "perm"] ). Return a generator object yielding a tuple of two element ... the facts argument but server is not guaranteed to return all requested facts. バージョン 3.3 で追加. FTP. n ...
https://man.plustar.jp/python/library/ftplib.html - [similar]
8.5. heapq --- ヒープキューアルゴリズム — Python 3.6.5 ドキュメント 4734
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... value in iterable : ... heappush ( h , value ) ... return [ heappop ( h ) for i in range ( len ( h ))] ... > ... try [ - 1 ] = REMOVED def pop_task (): 'Remove and return the lowest priority task. Raise KeyError if empty. ... if task is not REMOVED : del entry_finder [ task ] return task raise KeyError ( 'pop from an empty priority ...
https://man.plustar.jp/python/library/heapq.html - [similar]
21.12. http.client --- HTTP プロトコルクライアント — Python 3.6.5 ドキュメント 4734
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... object is an instance of io.TextIOBase , the data returned by the read() method will be encoded as ISO-8859 ... -1, otherwise the data returned by read() is sent as is. If body is an iterable, ... HTTPResponse. getheader ( name , default=None ) ¶ Return the value of the header name , or default if there ... there is more than one header with the name name , return all of the values joined by ', '. If 'default' is ...
https://man.plustar.jp/python/library/http.client.html - [similar]
12.4. marshal --- 内部使用向けの Python オブジェクト整列化 — Python 3.6.5 ドキ... 4734
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... d ( file ) ¶ Read one value from the open file and return it. If no valid value is read (e.g. because the da ... 換えます。 marshal. dumps ( value [ , version ] ) ¶ Return the bytes object that would be written to a file b ...
https://man.plustar.jp/python/library/marshal.html - [similar]