Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 10 for cur (0.029 sec.)
12.6. sqlite3 --- SQLite データベースに対する DB-API 2.0 インタフェース — Pytho... 14194
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... タベースを作ることもできます。 Connection があれば、 Cursor オブジェクトを作りその execute() メソッドを呼ん ... で SQL コマンドを実行することができます: c = conn . cursor () # Create table c . execute ( '''CREATE TABLE ... nn = sqlite3 . connect ( 'example.db' ) c = conn . cursor () たいてい、SQL 操作では Python 変数の値を使う ... とがあります。) 例を示します: # Never do this -- insecure! symbol = 'RHAT' c . execute ( "SELECT * FROM sto ...
https://man.plustar.jp/python/library/sqlite3.html - [similar]
19.4. mailbox --- 様々な形式のメールボックス操作 — Python 3.6.5 ドキュメント 9332
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... メールボックスには三つのサブディレクトリ tmp , new , cur があります。メッセージはまず tmp サブディレクトリに ... 送を完了します。メールユーザエージェントが引き続いて cur サブディレクトリにメッセージを移動しメッセージの状 ... ユーザが最初にメールボックスを開くか閉じるかした後で cur サブディレクトリに移動し、メッセージが実際に読まれ ... たかどうかを記録します。 cur にある各メッセージには状態情報を保存するファイル名 ...
https://man.plustar.jp/python/library/mailbox.html - [similar]
21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 8348
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... = str ( self . request . recv ( 1024 ), 'ascii' ) cur_thread = threading . current_thread () response = ... bytes ( " {} : {} " . format ( cur_thread . name , data ), 'ascii' ) self . request . ...
https://man.plustar.jp/python/library/socketserver.html - [similar]
35.9. fcntl --- fcntl および ioctl システムコール — Python 3.6.5 ドキュメント 8259
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ) 1 -- 現在のバッファ位置からの相対位置 ( os.SEEK_CUR ) 2 -- ファイルの末尾からの相対位置 ( os.SEEK_END ...
https://man.plustar.jp/python/library/fcntl.html - [similar]
16.2. io --- ストリームを扱うコアツール — Python 3.6.5 ドキュメント 8259
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... set は 0 もしくは正の値でなければなりません。 SEEK_CUR または 1 -- 現在のストリーム位置。 offset は負の値 ... れ以外の offset 値は未定義の挙動を起こします。 SEEK_CUR または 1 : 現在の位置に "シークします"。 offset は ...
https://man.plustar.jp/python/library/io.html - [similar]
18.9. mmap --- メモリマップファイル — Python 3.6.5 ドキュメント 8205
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... つまり 0 (絶対位置)です。その他の値として、 os.SEEK_CUR つまり 1 (現在位置からの相対位置)と os.SEEK_END つ ...
https://man.plustar.jp/python/library/mmap.html - [similar]
35.11. resource --- リソース使用状態の情報 — Python 3.6.5 ドキュメント 8205
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... LIMIT_NICE ¶ プロセスの nice の上限です (20 - rlim_cur)。 利用できる環境: Linux 2.6.12 以降。 バージョン ...
https://man.plustar.jp/python/library/resource.html - [similar]
What's New In Python 3.1 — Python 3.6.5 ドキュメント 8205
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... dept, count(*) FROM main GROUPBY region, dept >>> cursor . execute ( query ) >>> query_fields = [ desc [ ... 0 ] for desc in cursor . description ] >>> UserQuery = namedtuple ( 'U ... pprint . pprint ([ UserQuery ( * row ) for row in cursor ]) [UserQuery(region='South', dept='Shipping', ... めの3つの新しい定数が追加されました: SEEK_SET , SEEK_CUR , and SEEK_END . sys.version_info タプルが名前付き ...
https://man.plustar.jp/python/whatsnew/3.1.html - [similar]
16.1. os --- 雑多なオペレーティングシステムインタフェース — Python 3.6.5 ドキュ... 8170
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... pwuid(os.getuid())[0] to get the login name of the current real user id. 利用できる環境 : Unix 、 Windows ... EEK_SET か 0 を、現在の位置からの相対位置には SEEK_CUR か 1 を、ファイルの末尾からの相対位置には SEEK_END ... ルの先頭からのバイト数です。 os. SEEK_SET ¶ os. SEEK_CUR ¶ os. SEEK_END ¶ lseek() 関数に渡すパラメーター。値 ...
https://man.plustar.jp/python/library/os.html - [similar]
What's New in Python 2.5 — Python 3.6.5 ドキュメント 8116
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... tion = DatabaseConnection () with db_connection as cursor : cursor . execute ( 'insert into ...' ) cursor ... lass DatabaseConnection : # Database interface def cursor ( self ): "Returns a cursor object and starts a ... new transaction" def commit ( self ): "Commits current transaction" def rollback ( self ): "Rolls bac ... k current transaction" __enter__() メソッドはとっても簡単 ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
PREV 1 NEXT