Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 234 for IF (0.096 sec.)
21.13. ftplib --- FTPプロトコルクライアント — Python 3.6.5 ドキュメント 5540
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... hen not given). The optional timeout parameter specifies a timeout in seconds for blocking operations li ... ke the connection attempt (if is not specified, the global default timeout setti ... fault_context() select the system's trusted CA certificates for you. FTP_TLS クラスを使ったサンプルセッシ ... t and port. The default port number is 21 , as specified by the FTP protocol specification. It is rarely ...
https://man.plustar.jp/python/library/ftplib.html - [similar]
21.22. http.server --- HTTP サーバ — Python 3.6.5 ドキュメント 5540
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... えば 'Python/1.4' です。 error_message_format ¶ Specifies a format string that should be used by send_err ... te error reply to the client. The numeric code specifies the HTTP error code, with message as an optiona ... t values for message and explain that will be used if no value is provided; for unknown codes the defaul ... or both is the string ??? . The body will be empty if the method is HEAD or the response code is one of ...
https://man.plustar.jp/python/library/http.server.html - [similar]
29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 5540
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ています。このモジュールは常に利用可能です。 sys. abiflags ¶ Python が標準的な configure でビルトされた P ... 指定します。 擬似コード: def displayhook ( value ): if value is None : return # Set '_' to None to avoid ... e ( sys . stdout . encoding , 'backslashreplace' ) if hasattr ( sys . stdout , 'buffer' ): sys . stdout ... = '3.14159265358979' # decimal string with 15 significant digits >>> format ( float ( s ), '.15g' ) # c ...
https://man.plustar.jp/python/library/sys.html - [similar]
24.1. turtle --- タートルグラフィックス — Python 3.6.5 ドキュメント 5499
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... _fill () while True : forward ( 200 ) left ( 170 ) if abs ( pos ()) < 1 : break end_fill () done () これ ... ぶし ¶ turtle. filling ( ) ¶ Return fillstate ( True if filling, False else). >>> turtle . begin_fill () > ... >> if turtle . filling (): ... turtle . pensize ( 5 ) .. ... ange the turtle's heading (direction of movement). If shear is not given: return the current shearfactor ...
https://man.plustar.jp/python/library/turtle.html - [similar]
関数型プログラミング HOWTO — Python 3.6.5 ドキュメント 5458
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 関数 ... line in line_list ] 特定の要素だけを選び出すのは "if" 条件式を付けることで可能です: stripped_list = [ l ... ine . strip () for line in line_list if line != "" ] リスト内包表記を使うと Python リストが ... は次のとおりです: ( expression for expr in sequence1 if condition1 for expr2 in sequence2 if condition2 fo ... r expr3 in sequence3 ... if condition3 for exprN in sequenceN if conditionN ) ...
https://man.plustar.jp/python/howto/functional.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 5458
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... は行われません: for entry in os . scandir ( path ): if not entry . name . startswith ( '.' ) and entry . ... fstat() , fstatvfs() , fsync() , ftruncate() , mkfifo() , mknod() , open() , posix_fadvise() , posix_fa ... ichel.) New Transport.is_closing() method to check if the transport is closing or closed. (Contributed b ... 19628 .) The -q command line option can now be specified more than once, in which case all output, inclu ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
12.6. sqlite3 --- SQLite データベースに対する DB-API 2.0 インタフェース — Pytho... 5427
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... onn . commit () # We can also close the connection if we are done with it. # Just be sure any changes ha ... 、リファレンス、実例集。 PEP 249 - Database API Specification 2.0 Marc-Andre Lemburg により書かれた PEP。 ... d only the creating thread may use the connection. If set False , the returned connection may be shared ... lank line to exit." ) while True : line = input () if line == "" : break buffer += line if sqlite3 . com ...
https://man.plustar.jp/python/library/sqlite3.html - [similar]
3. Defining Extension Types: Assorted Topics — Python 3.6.5 ドキュメント 5386
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... self = ( MyObject * ) obj ; PyObject * cbresult ; if ( self -> my_callback != NULL ) { PyObject * err_t ... yObject_CallObject ( self -> my_callback , NULL ); if ( cbresult == NULL ) PyErr_WriteUnraisable ( self ... ject * obj ) { return PyUnicode_FromFormat ( "Repr-ified_newdatatype{{size:%d}}" , obj -> obj_Underlying ... ect * obj ) { return PyUnicode_FromFormat ( "Stringified_newdatatype{{size:%d}}" , obj -> obj_Underlying ...
https://man.plustar.jp/python/extending/newtypes.html - [similar]
19.1.14. email.utils: 多方面のユーティリティ — Python 3.6.5 ドキュメント 5386
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ) ¶ Return local time as an aware datetime object. If called without arguments, return current time. Oth ... e zone according to the system time zone database. If dt is naive (that is, dt.tzinfo is None ), it is a ... is or is not (respectively) in effect for the specified time. A negative value for isdst causes the loc ... ivine whether summer time is in effect for the specified time. バージョン 3.3 で追加. email.utils. make_ ...
https://man.plustar.jp/python/library/email.util.html - [similar]
26.8. test --- Python 用回帰テストパッケージ — Python 3.6.5 ドキュメント 5386
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... st . TestCase ): # Only use setUp() and tearDown() if necessary def setUp ( self ): ... code to execute ... cture as MyTestCase1 ... ... more test classes ... if __name__ == '__main__' : unittest . main () このコ ... ィレクトリを作成し与えるコンテキストマネージャです。 If path is None , the temporary directory is created ... using tempfile.mkdtemp() . If quiet is False , the context manager raises an exc ...
https://man.plustar.jp/python/library/test.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NEXT