Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 80 for while (0.030 sec.)
What's New In Python 3.6 — Python 3.6.5 ドキュメント 7259
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... er .) PEP 523: CPython にフレーム評価 API を追加 ¶ While Python provides extensive support to customize how ... reorganized and rewritten to focus on the new API, while retaining the old documentation for the legacy API ... ion of inspect.getfullargspec() has been reversed. While this function is convenient for single/source Pyth ... ndroid 5.0 Lollilop) or greater runs successfully. While Android is not yet a supported platform, the Pytho ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
19.1.5. email.errors: 例外及び欠陥クラス — Python 3.6.5 ドキュメント 7013
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e list of the defects that the FeedParser can find while parsing messages. Note that the defects are added ...
https://man.plustar.jp/python/library/email.errors.html - [similar]
Python 言語リファレンス — Python 3.6.5 ドキュメント 7013
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... 文 8. 複合文 (compound statement) 8.1. if 文 8.2. while 文 8.3. for 文 8.4. try 文 8.5. with 文 8.6. 関数定 ...
https://man.plustar.jp/python/reference/index.html - [similar]
正規表現 HOWTO — Python 3.6.5 ドキュメント 6766
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規 ... atever's being repeated may not be present at all, while + requires at least one occurrence. To use a simil ... . Omitting m is interpreted as a lower limit of 0, while omitting n results in an upper bound of infinity. ... s if the RE matches at the beginning of the string while search() will scan forward through the string for ...
https://man.plustar.jp/python/howto/regex.html - [similar]
15.3. secrets --- 機密を扱うために安全な乱数を生成する — Python 3.6.5 ドキュメ... 6766
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... lphabet = string . ascii_letters + string . digits while True : password = '' . join ( choice ( alphabet ) ...
https://man.plustar.jp/python/library/secrets.html - [similar]
6. モジュール (module) — Python 3.6.5 ドキュメント 6766
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... ): # write Fibonacci series up to n a , b = 0 , 1 while b < n : print ( b , end = ' ' ) a , b = b , a + b ... Fibonacci series up to n result = [] a , b = 0 , 1 while b < n : result . append ( b ) a , b = b , a + b re ...
https://man.plustar.jp/python/tutorial/modules.html - [similar]
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 6506
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... n't do anything. It can't even be subclassed. 注釈 While this documentation showcases the standard distutil ... fe way to clear data attributes of arbitrary types while decrementing their reference counts. If you were t ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
ライブラリと拡張 FAQ — Python 3.6.5 ドキュメント 6506
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... ): print ( 'Running worker' ) time . sleep ( 0.1 ) while True : try : arg = q . get ( block = False ) excep ... ) print ( "Enter message, end with ^D:" ) msg = '' while True : line = sys . stdin . readline () if not lin ...
https://man.plustar.jp/python/faq/library.html - [similar]
Python 3 への拡張モジュール移植 — Python 3.6.5 ドキュメント 6506
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... ame_dup , name , name_length ); trace = name_dup ; while ( trace ) { char * dot = strchr ( trace , '.' ); i ...
https://man.plustar.jp/python/howto/cporting.html - [similar]
17.9. _thread --- 低水準の スレッド API — Python 3.6.5 ドキュメント 6506
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... te_lock () with a_lock : print ( "a_lock is locked while this executes" ) 警告: スレッドは割り込みと奇妙な相 ...
https://man.plustar.jp/python/library/_thread.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT