Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 201 - 210 of about 249 for FOR (0.178 sec.)
11.2. os.path --- 共通のパス名操作 — Python 3.6.5 ドキュメント 4347
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... c links, so both islink() and isfile() can be true for the same path. バージョン 3.6 で変更: path-like ob ... ic links, so both islink() and isdir() can be true for the same path. バージョン 3.6 で変更: path-like ob ... he path to lowercase. On Windows, it also converts forward slashes to backward slashes. Raise a TypeError ...
https://man.plustar.jp/python/library/os.path.html - [similar]
26.5. unittest.mock --- モックオブジェクトライブラリ — Python 3.6.5 ドキュメン... 4347
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... づいています。 There is a backport of unittest.mock for earlier versions of Python, available as mock on P ... sh__ , __sizeof__ , __repr__ , __str__ __dir__ , __format__ , __subclasses__ __floor__ , __trunc__ , __ce ... アップしない magic method: __subclasses__ __dir__ __format__ __get__ , __set__ , __delete__ __reversed__ , ... __getnewargs__ , __getstate__ , __setstate__ __getformat__ , __setformat__ [2] Magic method はインスタン ...
https://man.plustar.jp/python/library/unittest.mock.html - [similar]
Python 言語リファレンス — Python 3.6.5 ドキュメント 4347
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... (compound statement) 8.1. if 文 8.2. while 文 8.3. for 文 8.4. try 文 8.5. with 文 8.6. 関数定義 8.7. クラ ...
https://man.plustar.jp/python/reference/index.html - [similar]
13. さあ何を? — Python 3.6.5 ドキュメント 4347
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... of user-created Python modules that are available for download. Once you begin releasing code, you can r ...
https://man.plustar.jp/python/tutorial/whatnow.html - [similar]
一般 Python FAQ — Python 3.6.5 ドキュメント 4307
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... ms, TCP/IP sockets). Look at the table of contents for Python 標準ライブラリ to get an idea of what's ava ... きにアップデート版を送るため)。以前バグ報告に SourceForge を使っていたことがあるなら、Roundup の password ... '__delitem__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__' ... sert', 'pop', 'remove', 'reverse', 'sort'] >>> [ d for d in dir ( L ) if '__' not in d ] ['append', 'clea ...
https://man.plustar.jp/python/faq/general.html - [similar]
Logging HOWTO — Python 3.6.5 ドキュメント 4307
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... 。例えば: import logging logging . warning ( ' %s before you %s ' , 'Look' , 'leap!' ) により、次のように表 ... 示されます: WARNING:root:Look before you leap! ご覧の通り、イベント記述メッセージに変数 ... れは後方互換性のためです。logging パッケージは、 str.format() や string.Template のような新しいフォーマット ... 要があります: import logging logging . basicConfig ( format = ' %(levelname)s : %(message)s ' , level = log ...
https://man.plustar.jp/python/howto/logging.html - [similar]
18.5.8. キュー — Python 3.6.5 ドキュメント 4307
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... れましたが、 timeout 引数はありません。 asyncio.wait_for() 関数を用いてタイムアオウト後にタスクをキャンセル ...
https://man.plustar.jp/python/library/asyncio-queue.html - [similar]
22.5. chunk --- IFFチャンクデータの読み込み — Python 3.6.5 ドキュメント 4307
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... このフォーマットは少なくとも、Audio Interchange File Format (AIFF/AIFF-C) とReal Media File Format (RMFF)で ... クの始めに設定します。 脚注 [1] "EA IFF 85" Standard for Interchange Format Files, Jerry Morrison, Electron ...
https://man.plustar.jp/python/library/chunk.html - [similar]
35.5. crypt --- Unix パスワードをチェックするための関数 — Python 3.6.5 ドキュメ... 4307
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ptedpasswd == '*' : raise ValueError ( 'no support for shadow passwords' ) cleartext = getpass . getpass ...
https://man.plustar.jp/python/library/crypt.html - [similar]
16.5. getopt --- C 言語スタイルのコマンドラインオプションパーサ — Python 3.6.5 ... 4307
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... xcept getopt . GetoptError as err : # print help information and exit: print ( err ) # will print somethi ... () sys . exit ( 2 ) output = None verbose = False for o , a in opts : if o == "-v" : verbose = True elif ...
https://man.plustar.jp/python/library/getopt.html - [similar]