Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 273 for THE (0.079 sec.)
29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 6083
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ン 3.1 で追加. sys. getallocatedblocks ( ) ¶ Return the number of memory blocks currently allocated by the ... interpreter, regardless of their size. This function is mainly useful for trackin ... g and debugging memory leaks. Because of the interpreter's internal caches, the result can vary ... ング名を返します。 sys. getdlopenflags ( ) ¶ Return the current value of the flags that are used for dlope ...
https://man.plustar.jp/python/library/sys.html - [similar]
マップ型プロトコル (mapping protocol) — Python 3.6.5 ドキュメント 6073
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... int PyMapping_Check ( PyObject *o ) ¶ Return 1 if the object provides mapping protocol, and 0 otherwise. ... ssize_t PyMapping_Length ( PyObject *o ) ¶ Returns the number of keys in object o on success, and -1 on f ... ot provide mapping protocol, this is equivalent to the Python expression len(o) . int PyMapping_DelItemSt ... ring ( PyObject *o , const char *key ) ¶ Remove the mapping for object key from the object o . Return ...
https://man.plustar.jp/python/c-api/mapping.html - [similar]
12.6. sqlite3 --- SQLite データベースに対する DB-API 2.0 インタフェース — Pytho... 6044
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... -01-05','BUY','RHAT',100,35.14)" ) # Save (commit) the changes conn . commit () # We can also close the c ... # Just be sure any changes have been committed or they will be lost. conn . close () 保存されたデータは永 ... す。 By default, check_same_thread is True and only the creating thread may use the connection. If set Fal ... se , the returned connection may be shared across multiple ...
https://man.plustar.jp/python/library/sqlite3.html - [similar]
What's New in Python 2.3 — Python 3.6.5 ドキュメント 6024
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... [1, 2, 3, 4, 5, 6]) >>> It's also possible to take the symmetric difference of two sets. This is the set ... of all elements in the union that aren't in the intersection. Another way ... of putting it is that the symmetric difference contains all elements that ar ... e in exactly one set. Again, there's an alternative notation ( ^ ), and an in-place ...
https://man.plustar.jp/python/whatsnew/2.3.html - [similar]
18.8. signal --- 非同期イベントにハンドラを設定する — Python 3.6.5 ドキュメント 6005
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... valid operation in C code. Python will return from the signal handler to the C code, which is likely to r ... aise the same signal again, causing Python to apparently ha ... ng. From Python 3.3 onwards, you can use the faulthandler module to report on synchronous error ... nal. pthread_kill ( thread_id , signalnum ) ¶ Send the signal signalnum to the thread thread_id , another ...
https://man.plustar.jp/python/library/signal.html - [similar]
What's New in Python 2.5 — Python 3.6.5 ドキュメント 5995
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... た。候補には C の cond ? true_v : false_v や if cond then true_v else false_v を含む、ほか 16 のバリエーショ ... functools def log ( message , subsystem ): "Write the contents of 'message' to the specified subsystem." ... /pypackage/dist/pkg- %s .tar.gz' % VERSION ), ) Another new enhancement to the Python package index at ht ... storing source and binary archives for a package. The new upload Distutils command will upload a package ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
19.6. base64 --- Base16, Base32, Base64, Base85 データの符号化 — Python 3.6.5 ... 5975
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ログラムで用いられているものとは同じではありません。 There are two interfaces provided by this module. The ... rmal, and URL- and filesystem-safe) are supported. The legacy interface does not support decoding from st ... coding to and from file objects . It only supports the Base64 standard alphabet, and it adds newlines eve ... FC 2045 support you probably want to be looking at the email package instead. バージョン 3.3 で変更: モダ ...
https://man.plustar.jp/python/library/base64.html - [similar]
21.26. xmlrpc.client --- XML-RPC クライアントアクセス — Python 3.6.5 ドキュメン... 5975
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... n call methods with parameters on a remote server (the server is named by a URI) and get back structured ... pports writing XML-RPC client code; it handles all the details of translating between conformable Python ... objects and XML on the wire. 警告 xmlrpc.client モジュールは悪意を持って構 ... anages communication with a remote XML-RPC server. The required first argument is a URI (Uniform Resource ...
https://man.plustar.jp/python/library/xmlrpc.client.html - [similar]
24.1. turtle --- タートルグラフィックス — Python 3.6.5 ドキュメント 5956
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... goto() | setpos() | setposition() setx() sety() setheading() | seth() home() circle() dot() stamp() clea ... ) >>> turtle . position () (0.00,-10.00) turtle. setheading ( to_angle ) ¶ turtle. seth ( to_angle ) ¶ パ ... 180 - 西 180 - 南 270 - 南 270 - 西 >>> turtle . setheading ( 90 ) >>> turtle . heading () 90.0 turtle. h ... n as gon, grade, or gradian and equals 1/100-th of the right angle.) >>> turtle . degrees ( 400.0 ) >>> t ...
https://man.plustar.jp/python/library/turtle.html - [similar]
26.8. test --- Python 用回帰テストパッケージ — Python 3.6.5 ドキュメント 5946
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 与えるコンテキストマネージャです。 If path is None , the temporary directory is created using tempfile.mkdt ... emp() . If quiet is False , the context manager raises an exception on error. Othe ... ctory, CWD) を変更するコンテキストマネージャです。 The context manager creates a temporary directory in t ... rectory with name name before temporarily changing the current working directory. If name is None , the t ...
https://man.plustar.jp/python/library/test.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT