Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 249 for FOR (0.090 sec.)
15.3. secrets --- 機密を扱うために安全な乱数を生成する — Python 3.6.5 ドキュメ... 5372
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... digits password = '' . join ( choice ( alphabet ) for i in range ( 8 )) 注釈 アプリケーションは、平文であ ... True : password = '' . join ( choice ( alphabet ) for i in range ( 10 )) if ( any ( c . islower () for c ... in password ) and any ( c . isupper () for c in password ) and sum ( c . isdigit () for c in ... ems, use a convenient dictionary file. # Other platforms may need to provide their own word-list. with op ...
https://man.plustar.jp/python/library/secrets.html - [similar]
16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 5301
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... RS . Return a 3-tuple, containing the R,G,B values for the given color, which will be between 0 (no compo ... sor state. visibility can be set to 0 , 1 , or 2 , for invisible, normal, or very visible. If the termina ... ter write operations such as addstr() have been performed on a window. The normal refresh() call is simpl ... have to update multiple windows, you can speed performance and perhaps reduce screen flicker by issuing ...
https://man.plustar.jp/python/library/curses.html - [similar]
21.13. ftplib --- FTPプロトコルクライアント — Python 3.6.5 ドキュメント 5301
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... You can use this to write Python programs that perform a variety of automated FTP jobs, such as mirrorin ... module urllib.request to handle URLs that use FTP. For more information on FTP (File Transfer Protocol), ... l timeout parameter specifies a timeout in seconds for blocking operations like the connection attempt (i ... be used). source_address is a 2-tuple (host, port) for the socket to bind to as its source address before ...
https://man.plustar.jp/python/library/ftplib.html - [similar]
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 5261
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... umentation showcases the standard distutils module for building C extensions, it is recommended in real-w ... y. Documentation on how to do this is out of scope for this document and can be found in the Python Packa ... r , "last" ); return NULL ; } return PyUnicode_FromFormat ( "%S %S" , self -> first , self -> last ); } s ... w = Custom_new , The tp_new handler is responsible for creating (as opposed to initializing) objects of t ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
12.6. sqlite3 --- SQLite データベースに対する DB-API 2.0 インタフェース — Pytho... 5261
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 3つです。 以下の例ではイテレータの形を使います: >>> for row in c . execute ( 'SELECT * FROM stocks ORDER B ... le:path/to/database?mode=ro' , uri = True ) More information about this feature, including a list of reco ... a custom Python type. The callable will be invoked for all database values that are of the type typename ... e parameter detect_types of the connect() function for how the type detection works. Note that the case o ...
https://man.plustar.jp/python/library/sqlite3.html - [similar]
8.6. bisect --- 配列二分法アルゴリズム — Python 3.6.5 ドキュメント 5231
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... された挿入点 i は、配列 a を二つに分け、 all(val < x for val in a[lo:i]) が左側に、 all(val >= x for val in ... れた挿入点 i は、配列 a を二つに分け、 all(val <= x for val in a[lo:i]) が左側に、 all(val > x for val in ... ... return grades [ i ] ... >>> [ grade ( score ) for score in [ 33 , 99 , 77 , 70 , 89 , 90 , 100 ]] [' ... t ( key = lambda r : r [ 1 ]) >>> keys = [ r [ 1 ] for r in data ] # precomputed list of keys >>> data [ ...
https://man.plustar.jp/python/library/bisect.html - [similar]
26.8. test --- Python 用回帰テストパッケージ — Python 3.6.5 ドキュメント 5231
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... setUp ( self ): ... code to execute in preparation for tests ... def tearDown ( self ): ... code to execu ... ールでは、以下の関数を定義しています: test.support. forget ( module_name ) ¶ モジュール名 module_name を s ... irectory in the current directory with name name before temporarily changing the current working director ... します。 使用例: # Get copies of the warnings module for testing without affecting the # version being used ...
https://man.plustar.jp/python/library/test.html - [similar]
8.3. collections --- コンテナデータ型 — Python 3.6.5 ドキュメント 5161
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... parser . parse_args () command_line_args = { k : v for k , v in vars ( namespace ) . items () if v } comb ... er scopes' def __setitem__ ( self , key , value ): for mapping in self . maps : if key in mapping : mappi ... 0 ][ key ] = value def __delitem__ ( self , key ): for mapping in self . maps : if key in mapping : del m ... rences of words in a list >>> cnt = Counter () >>> for word in [ 'red' , 'blue' , 'red' , 'green' , 'blue ...
https://man.plustar.jp/python/library/collections.html - [similar]
19.1.14. email.utils: 多方面のユーティリティ — Python 3.6.5 ドキュメント 5161
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... local time. In this case, a positive or zero value for isdst causes localtime to presume initially that s ... ummer time (for example, Daylight Saving Time) is or is not (respe ... ctively) in effect for the specified time. A negative value for isdst cau ... attempt to divine whether summer time is in effect for the specified time. バージョン 3.3 で追加. email.u ...
https://man.plustar.jp/python/library/email.util.html - [similar]
21.15. imaplib --- IMAP4 プロトコルクライアント — Python 3.6.5 ドキュメント 5161
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... structure. Please read セキュリティで考慮すべき点 for best practices. keyfile and certfile are a legacy ... alternative to ssl_context - they can point to PEM-formatted private key and certificate chain files for ... text() select the system's trusted CA certificates for you. さらにもう一つのサブクラスは、子プロセスで確立 ... .struct_time tuple or None if the string has wrong format. imaplib. Int2AP ( num ) ¶ 整数を [ A .. P ] か ...
https://man.plustar.jp/python/library/imaplib.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NEXT