Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 331 for OF (0.078 sec.)
7. 入力と出力 — Python 3.6.5 ドキュメント 5480
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... x = 10 * 3.25 >>> y = 200 * 200 >>> s = 'The value of x is ' + repr ( x ) + ', and y is ' + repr ( y ) + ... '...' >>> print ( s ) The value of x is 32.5, and y is 40000... >>> # The repr() of a ... x * x ) . rjust ( 3 ), end = ' ' ) ... # Note use of 'end' on previous line ... print ( repr ( x * x * ... み合わせて使うこともできます: >>> print ( 'The story of {0} , {1} , and {other} .' . format ( 'Bill' , 'Ma ...
https://man.plustar.jp/python/tutorial/inputoutput.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 5452
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... by default returns None . See also the definition of コンテキストマネージャ型 . バージョン 3.6 で追加. ... ple example (this is not recommended as a real way of generating HTML!): from contextlib import contextm ... ut is hardwired to stdout. For example, the output of help() normally is sent to sys.stdout . You can ca ... elp ( pow ) s = f . getvalue () To send the output of help() to a file on disk, redirect the output to a ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
21.13. ftplib --- FTPプロトコルクライアント — Python 3.6.5 ドキュメント 5425
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ed items. The FTP class implements the client side of the FTP protocol. You can use this to write Python ... programs that perform a variety of automated FTP jobs, such as mirroring other FTP se ... ne , source_address=None ) ¶ Return a new instance of the FTP class. When host is given, the method call ... > from ftplib import FTP >>> with FTP ( "ftp1.at.proftpd.org" ) as ftp : ... ftp . login () ... ftp . di ...
https://man.plustar.jp/python/library/ftplib.html - [similar]
12.6. sqlite3 --- SQLite データベースに対する DB-API 2.0 インタフェース — Pytho... 5397
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ol text, qty real, price real)''' ) # Insert a row of data c . execute ( "INSERT INTO stocks VALUES ('20 ... e information about this feature, including a list of recognized options, can be found in the SQLite URI ... e will be invoked for all database values that are of the type typename . Confer the parameter detect_ty ... pes of the connect() function for how the type detection ...
https://man.plustar.jp/python/library/sqlite3.html - [similar]
DTrace と SystemTap で CPython を測定する — Python 3.6.5 ドキュメント 5370
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » DTra ... readelf -n ./python Displaying notes found at file offset 0x00000254 with length 0x00000020: Owner Data ... Linux, ABI: 2.6.32 Displaying notes found at file offset 0x00000274 with length 0x00000024: Owner Data ... 51d4602022977af2670 Displaying notes found at file offset 0x002d6c30 with length 0x00000144: Owner Data ... ript can be used to show the call/return hierarchy of a Python script, only tracing within the invocatio ...
https://man.plustar.jp/python/howto/instrumentation.html - [similar]
32.12. dis --- Python バイトコードの逆アセンブラ — Python 3.6.5 ドキュメント 5370
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... dis. Bytecode ( x , * , first_line=None , current_offset=None ) ¶ 関数、ジェネレータ、メソッド、ソースコ ... されたコードオブジェクトから直接取得します。 current_offset が None でない場合は、逆アセンブルされたコード ... スバックから Bytecode インスタンスを構築し、 current_offset がその例外の原因となった命令となるよう設定しま ... n uses the co_firstlineno and co_lnotab attributes of the code object code to find the offsets which are ...
https://man.plustar.jp/python/library/dis.html - [similar]
27.5. timeit --- 小さなコード断片の実行時間計測 — Python 3.6.5 ドキュメント 5342
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... oin(str(n) for n in range(100))' 10000 loops, best of 3: 30.2 usec per loop $ python3 -m timeit '"-".joi ... n([str(n) for n in range(100)])' 10000 loops, best of 3: 27.5 usec per loop $ python3 -m timeit '"-".joi ... n(map(str, range(100)))' 10000 loops, best of 3: 23.2 usec per loop 同じ事を Python インターフェ ... time >= 0.2 second, returning the eventual (number of loops, time taken for that number of loops). It ca ...
https://man.plustar.jp/python/library/timeit.html - [similar]
26.8. test --- Python 用回帰テストパッケージ — Python 3.6.5 ドキュメント 5315
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 数は ImportError を送出します。 使用例: # Get copies of the warnings module for testing without affecting ... the # version being used by the rest of the test suite. One copy uses the # C implementati ... lse from binding to our host/port for the duration of the test. test.support. find_unused_port ( family= ... to be bound to a particular port for the duration of the test. Which one to use depends on whether the ...
https://man.plustar.jp/python/library/test.html - [similar]
19.6. base64 --- Base16, Base32, Base64, Base85 データの符号化 — Python 3.6.5 ... 5287
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... esystem-safe alphabet, which substitutes - instead of + and _ instead of / in the standard Base64 alphab ... esystem-safe alphabet, which substitutes - instead of + and _ instead of / in the standard Base64 alphab ... ke object s , which must contain one or more lines of base64 encoded data, and return the decoded bytes ... 追加. base64. decodestring ( s ) ¶ Deprecated alias of decodebytes() . バージョン 3.1 で非推奨. base64. e ...
https://man.plustar.jp/python/library/base64.html - [similar]
6.7. readline --- GNU readline のインタフェース — Python 3.6.5 ドキュメント 5150
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ngth ( length ) ¶ Set or return the desired number of lines to save in the history file. The write_histo ... e function invoked by the rl_startup_hook callback of the underlying library. If function is specified, ... function invoked by the rl_pre_input_hook callback of the underlying library. If function is specified, ... n only exists if Python was compiled for a version of the library that supports it. 6.7.6. 補完 ¶ The fo ...
https://man.plustar.jp/python/library/readline.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT