Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 249 for FOR (0.080 sec.)
28.4. zipapp --- 実行可能な python zip 書庫を管理する — Python 3.6.5 ドキュメン... 6054
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... interpreter used is portable. The Python launcher for Windows supports most common forms of POSIX #! lin ... nsider: If you use "/usr/bin/env python" (or other forms of the "python" command, such as "/usr/bin/pytho ... der both versions. If you use an explicit version, for example "/usr/bin/env python3" your application wi ... ll not work for users who do not have that version. (This may be w ...
https://man.plustar.jp/python/library/zipapp.html - [similar]
3. Defining Extension Types: Assorted Topics — Python 3.6.5 ドキュメント 5914
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... ject { PyObject_VAR_HEAD const char * tp_name ; /* For printing, in format "<module>.<name>" */ Py_ssize_ ... t tp_basicsize , tp_itemsize ; /* For allocation */ /* Methods to implement standard ope ... unc tp_setattr ; PyAsyncMethods * tp_as_async ; /* formerly known as tp_compare (Python 2) or tp_reserved ... (Python 3) */ reprfunc tp_repr ; /* Method suites for standard classes */ PyNumberMethods * tp_as_number ...
https://man.plustar.jp/python/extending/newtypes.html - [similar]
正規表現 HOWTO — Python 3.6.5 ドキュメント 5914
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規 ... n. It will back up until it has tried zero matches for [bcd]* , and if that subsequently fails, the engin ... hink of it as marking something as being optional. For example, home-?brew matches either 'homebrew' or ' ... re must be at least m repetitions, and at most n . For example, a/{1,3}b will match 'a/b' , 'a//b' , and ... or n ; in that case, a reasonable value is assumed for the missing value. Omitting m is interpreted as a ...
https://man.plustar.jp/python/howto/regex.html - [similar]
19.1. email --- 電子メールと MIME 処理のためのパッケージ — Python 3.6.5 ドキュ... 5914
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... age is serialized using a generator . This allows, for example, a generic email message to be parsed from ... types" and how they identify multipart documents. For the most part this knowledge should only be requir ... ed for more complex applications, and even then it should ... contentmanager sub-components, which provide tools for doing more detailed manipulation of headers and pa ...
https://man.plustar.jp/python/library/email.html - [similar]
What's New in Python 2.4 — Python 3.6.5 ドキュメント 5843
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 算を高速に行います: >>> a = set ( 'abracadabra' ) # form a set from a string >>> 'z' in a # fast membershi ... into a string 'arbcd' >>> b = set ( 'alacazam' ) # form a second set >>> a - b # letters in a but not in ... このように書くのは自然かもしれません: links = [ link for link in get_all_links () if not link . followed ] ... for link in links : ... こうではなく for link in get_all_links (): if link . followed : con ...
https://man.plustar.jp/python/whatsnew/2.4.html - [similar]
3. setup 設定ファイル (setup configuration file) を書く — Python 3.6.5 ドキュメ... 5773
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... . $ python setup.py --help build_ext [...] Options for 'build_ext' command: --build-lib (-b) directory fo ... iled extension modules --build-temp (-t) directory for temporary files (build by-products) --inplace (-i) ... --include-dirs (-I) list of directories to search for header files --define (-D) C preprocessor macros t ... nd-line is spelled foo_bar in configuration files. For example, say you want your extensions to be built ...
https://man.plustar.jp/python/distutils/configfile.html - [similar]
8.1. datetime --- 基本的な日付型および時間型 — Python 3.6.5 ドキュメント 5773
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... socalendar() == (2004, 1, 7) となります。 date. isoformat ( ) ¶ ISO 8601 形式、 'YYYY-MM-DD' の日付を表す ... 文字列を返します。例えば、 date(2002, 12, 4).isoformat() == '2002-12-04' となります。 date. __str__ ( ... ) ¶ date オブジェクト d において、 str(d) は d.isoformat() と等価です。 date. ctime ( ) ¶ 日付を表す文字 ... time(d.timetuple())) と等価です。 date. strftime ( format ) ¶ 明示的な書式文字列で制御された、日付を表現す ...
https://man.plustar.jp/python/library/datetime.html - [similar]
27.7. tracemalloc --- メモリ割り当ての追跡 — Python 3.6.5 ドキュメント 5773
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... t . statistics ( 'lineno' ) print ( "[ Top 10 ]" ) for stat in top_stats [: 10 ]: print ( stat ) Python テ ... t1 , 'lineno' ) print ( "[ Top 10 differences ]" ) for stat in top_stats [: 10 ]: print ( stat ) Python テ ... that this is 4428 KiB more than had been loaded before the tests, when the previous snapshot was taken. ... module has cached 940 KiB of Python source code to format tracebacks, all of it since the previous snapsh ...
https://man.plustar.jp/python/library/tracemalloc.html - [similar]
9. クラス — Python 3.6.5 ドキュメント 5743
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... name self . tricks = [] # creates a new empty list for each dog def add_trick ( self , trick ): self . tr ... pdate ( iterable ) def update ( self , iterable ): for item in iterable : self . items_list . append ( it ... em ) __update = update # private copy of original update() method class MappingSubclass ( Map ... ( self , keys , values ): # provides new signature for update() # but does not break __init__() for item ...
https://man.plustar.jp/python/tutorial/classes.html - [similar]
21.17. smtplib --- SMTP プロトコルクライアント — Python 3.6.5 ドキュメント 5713
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... l timeout parameter specifies a timeout in seconds for blocking operations like the connection attempt (i ... source TCP port. It takes a 2-tuple (host, port), for the socket to bind to as its source address before ... ame as instances of SMTP . SMTP_SSL should be used for situations where SSL is required from the beginnin ... connection. Please read セキュリティで考慮すべき点 for best practices. keyfile and certfile are a legacy ...
https://man.plustar.jp/python/library/smtplib.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT