Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 28 for display (0.024 sec.)
19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 14878
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... sented in this list as single-address Groups whose display_name is None . addresses ¶ A tuple of Address obje ... he value of an address header. Group objects whose display_name is None will be interpreted as single address ... fic headers. class email.headerregistry. Address ( display_name='' , username='' , domain='' , addr_spec=None ... スを表すのに使われます。アドレスの一般的な形式は: [ display_name ] < username @domain > もしくは: username @do ...
https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
Argparse チュートリアル — Python 3.6.5 ドキュメント 10634
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argp ... rser () parser . add_argument ( "square" , help = "display a square of a given number" ) args = parser . pars ... rser () parser . add_argument ( "square" , help = "display a square of a given number" , type = int ) args = ... r . add_argument ( "square" , type = int , help = "display a square of a given number" ) parser . add_argumen ... r . add_argument ( "square" , type = int , help = "display a square of a given number" ) parser . add_argumen ...
https://man.plustar.jp/python/howto/argparse.html - [similar]
Python で Curses プログラミング — Python 3.6.5 ドキュメント 10094
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... providing the programmer with an abstraction of a display containing multiple non-overlapping windows of tex ... screen, in order to be able to read keys and only display them under certain circumstances. This requires ca ... ngular area of the screen, and supports methods to display text, erase it, allow the user to input strings, a ... - 1, curses.COLS - 1) . When you call a method to display or erase text, the effect doesn't immediately show ...
https://man.plustar.jp/python/howto/curses.html - [similar]
6.7. readline --- GNU readline のインタフェース — Python 3.6.5 ドキュメント 10094
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... が呼ばれますが、戻り値は無視されます。 readline. redisplay ( ) ¶ スクリーンの表示を変更して行バッファの現在の ... を反映させます。これにより下層のライブラリーの rl_redisplay() が呼ばれます。 6.7.3. 履歴ファイル ¶ 以下の関数は ... n the underlying library. readline. set_completion_display_matches_hook ( [ function ] ) ¶ Set or remove the ... completion display function. If function is specified, it will be use ...
https://man.plustar.jp/python/library/readline.html - [similar]
19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 8996
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... . format ( headers [ 'from' ] . addresses [ 0 ] . display_name )) つぎに、あるディレクトリ内にある何枚かの家 ... We can extract the richest alternative in order to display it: richest = msg . get_body () partfiles = {} if ... : body = richest else : print ( "Don't know how to display {} " . format ( richest . get_content_type ())) sy ... 1 ]] = f . name else : print ( "Don't know how to display {} " . format ( richest . get_content_type ())) sy ...
https://man.plustar.jp/python/library/email.examples.html - [similar]
What's New In Python 3.3 — Python 3.6.5 ドキュメント 8996
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... @example.com>' >>> m [ 'to' ] . addresses (Address(display_name='Éric', username='foo', domain='example.com') ... username 'foo' >>> m [ 'to' ] . addresses [ 0 ] . display_name 'Éric' >>> m [ 'Date' ] = email . utils . loc ... > Date: Fri, 25 May 2012 21:44:27 -0400 Unicode の display name が、メッセージがシリアライズされる際に自動的に ... 属性を使えます: >>> m2 [ 'cc' ] . addresses (Address(display_name='Bob', username='bob', domain='example.com'), ...
https://man.plustar.jp/python/whatsnew/3.3.html - [similar]
6. 式 (expression) — Python 3.6.5 ドキュメント 8733
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... eral | enclosure enclosure ::= parenth_form | list_display | dict_display | set_display | generator_expressio ... 、リスト、集合、または辞書を構成するために、 "表示 (display)" と呼ばれる特殊な構文を、それぞれ二種類づつ提供し ... 系列です。系列は空の系列であってもかまいません: list_display ::= "[" [ starred_list | comprehension ] "]" リスト ... 分けるコロンがないことで辞書表現と区別されます: set_display ::= "{" ( starred_list | comprehension ) "}" 集合表 ...
https://man.plustar.jp/python/reference/expressions.html - [similar]
21.3. cgitb --- CGI スクリプトのトレースバック管理機構 — Python 3.6.5 ドキュメ... 8586
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... をログ記録するかどうかを制御します。 cgitb. enable ( display=1 , logdir=None , context=5 , format="html" ) ¶ こ ... ールに肩代わりさせるようにします。 オプションの引数 display は標準で 1 になっており、この値は 0 にしてトレース ...
https://man.plustar.jp/python/library/cgitb.html - [similar]
18.5.3. タスクとコルーチン — Python 3.6.5 ドキュメント 8324
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ーチンの例: import asyncio import datetime async def display_date ( loop ): end_time = loop . time () + 5.0 whi ... ent_loop () # Blocking call which returns when the display_date() coroutine is done loop . run_until_complete ... ( display_date ( loop )) loop . close () 参考 The display th ...
https://man.plustar.jp/python/library/asyncio-task.html - [similar]
18.5.1. 基底イベントループ — Python 3.6.5 ドキュメント 8045
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... プを停止します。 import asyncio import datetime def display_date ( end_time , loop ): print ( datetime . datet ... me () + 1.0 ) < end_time : loop . call_later ( 1 , display_date , end_time , loop ) else : loop . stop () loo ... o . get_event_loop () # Schedule the first call to display_date() end_time = loop . time () + 5.0 loop . call ... _soon ( display_date , end_time , loop ) # Blocking call interrupt ...
https://man.plustar.jp/python/library/asyncio-eventloop.html - [similar]
PREV 1 2 3 NEXT