Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 157 for data (0.088 sec.)
21.13. ftplib --- FTPプロトコルクライアント — Python 3.6.5 ドキュメント 5862
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nonymous user logged in' >>> ftps . prot_p () '200 Data protection level set to "private"' >>> ftps . nlst ... only once for each instance; it should not be called at all if a host was given when the instance was crea ... The callback function is called for each block of data received, with a single bytes argument giving the ... ansfer (which will also be the largest size of the data blocks passed to callback ). A reasonable default ...
https://man.plustar.jp/python/library/ftplib.html - [similar]
10. 標準ライブラリミニツアー — Python 3.6.5 ドキュメント 5816
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... ています: >>> import shutil >>> shutil . copyfile ( 'data.db' , 'archive.db' ) 'archive.db' >>> shutil . mov ... 値、分散等)を計算します: >>> import statistics >>> data = [ 2.75 , 1.75 , 1.25 , 0.25 , 0.5 , 1.25 , 3.5 ] ... >>> statistics . mean ( data ) 1.6071428571428572 >>> statistics . median ( dat ... a ) 1.25 >>> statistics . variance ( data ) 1.3720238095238095 SciPy プロジェクト < https:// ...
https://man.plustar.jp/python/tutorial/stdlib.html - [similar]
9. コマンドリファレンス — Python 3.6.5 ドキュメント 5782
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... ら、サブコマンド install_lib を実行します。 install_data and install_scripts . 9.1.1. install_data ¶ このコ ... インストールする: install コマンド群 9.1.1. install_data 9.1.2. install_scripts 9.2. ソース配布物を生成する ...
https://man.plustar.jp/python/distutils/commandref.html - [similar]
31.2. pkgutil --- パッケージ拡張ユーティリティ — Python 3.6.5 ドキュメント 5782
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... mportlib に基くように更新されました。 pkgutil. get_data ( package , resource ) ¶ パッケージからリソースを取 ... 得します。 This is a wrapper for the loader get_data API. The package argument should be the name of a ... . dirname ( sys . modules [ package ] . __file__ ) data = open ( os . path . join ( d , resource ), 'rb' ) ... ed, or it uses a loader which does not support get_data , then None is returned. In particular, the loader ...
https://man.plustar.jp/python/library/pkgutil.html - [similar]
31.5. importlib --- import の実装 — Python 3.6.5 ドキュメント 5701
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... EP 302 プロトコルを実装します。 abstractmethod get_data ( path ) ¶ path に割り当てられたデータのバイト列を ... ImportError を送出します。 static source_to_code ( data , path='<string>' ) ¶ Python のソースからコードオブ ... ジェクトを作ります。 data 引数は compile() 関数がサポートするもの (すなわち文 ... から継承された抽象基底クラスで、 ResourceLoader.get_data() および ExecutionLoader.get_filename() の具象実装 ...
https://man.plustar.jp/python/library/importlib.html - [similar]
35.8. pty --- 擬似端末ユーティリティ — Python 3.6.5 ドキュメント 5701
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... n ( filename , mode ) as script : def read ( fd ): data = os . read ( fd , 1024 ) script . write ( data ) ... return data print ( 'Script started, file is' , filename ) scr ...
https://man.plustar.jp/python/library/pty.html - [similar]
ソート HOW TO — Python 3.6.5 ドキュメント 5655
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » ソー ... 、元々の順序が維持されるということを意味します。 >>> data = [( 'red' , 1 ), ( 'blue' , 1 ), ( 'red' , 2 ), ( ... 'blue' , 2 )] >>> sorted ( data , key = itemgetter ( 0 )) [('blue', 1), ('blue', 2 ... () 関数を二回使うことで模倣することができます: >>> data = [( 'red' , 1 ), ( 'blue' , 1 ), ( 'red' , 2 ), ( ... 'blue' , 2 )] >>> standard_way = sorted ( data , key = itemgetter ( 0 ), reverse = True ) >>> dou ...
https://man.plustar.jp/python/howto/sorting.html - [similar]
21.26. xmlrpc.client --- XML-RPC クライアントアクセス — Python 3.6.5 ドキュメン... 5655
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... server is named by a URI) and get back structured data. This module supports writing XML-RPC client code; ... presented as datetime.datetime objects and binary data to be presented as bytes objects; this flag is fal ... ことができます。 Binary の内容は、属性で参照します: data ¶ Binary インスタンスがカプセル化しているバイナリデ ... binary item to the out stream object. The encoded data will have newlines every 76 characters as per RFC ...
https://man.plustar.jp/python/library/xmlrpc.client.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 5655
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... モジュールの関数: fchdir() , fchmod() , fchown() , fdatasync() , fstat() , fstatvfs() , fsync() , ftruncate ... n bpo-4254 .) dbm ¶ dumb.open always creates a new database when the flag has the value "n" . (Contributed ... argument to limit the maximum size of decompressed data. (Contributed by Martin Panter in bpo-15955 .) mat ... ault copy2() if there is a need to ignore file metadata when moving. (Contributed by Claudiu Popa in bpo-1 ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 5655
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... es is sufficient and correct. Prior to Python 3.6, data loss could result when using bytes paths on Window ... was made by call #1233329 to debug malloc/realloc. Data at p : 1 a 2 b 30 00 Memory block allocated at ( m ... lar, calling write() is now guaranteed to send the data in full. (Contributed by Martin Panter in bpo-2672 ... ibuted by Ivan Levkivskyi in Github #189 .) unicodedata ¶ The unicodedata module now uses data from Unicod ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT