Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 167 for list (0.078 sec.)
3. setup 設定ファイル (setup configuration file) を書く — Python 3.6.5 ドキュメ... 6145
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... 複数行にわたって記述できます。 You can find out the list of options supported by a particular command with ... gside your pure Python modules --include-dirs (-I) list of directories to search for header files --define ... (-U) C preprocessor macros to undefine --swig-opts list of SWIG command line options [...] Note that an op ... omatically generated by the Distutils (such as the list of files installed). But some of it has to be supp ...
https://man.plustar.jp/python/distutils/configfile.html - [similar]
26.3. doctest --- 対話的な実行例をテストする — Python 3.6.5 ドキュメント 6145
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... File "<stdin>" , line 1 , in <module> ValueError : list.remove(x): x not in list この doctest は、 ValueEr ... ror が送出され、その詳細情報が list.remove(x): x not in list である場合に成功します。 ... ます。 例えば、以下のテストは成功します: >>> print ( list ( range ( 20 ))) [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ... 、このテストを成功させることもできます: >>> print ( list ( range ( 20 ))) [0, 1, ..., 18, 19] 複数のディレク ...
https://man.plustar.jp/python/library/doctest.html - [similar]
シーケンス型プロトコル (sequence protocol) — Python 3.6.5 ドキュメント 6077
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... o.index(value) と同じです。 PyObject * PySequence_List ( PyObject *o ) ¶ Return value: New reference. シー ... 作られたことが保証されています。 これは Python の式 list(o) と同等です。 PyObject * PySequence_Tuple ( PyOb ... n value: New reference. Return the sequence o as a list, unless it is already a tuple or list, in which ca ...
https://man.plustar.jp/python/c-api/sequence.html - [similar]
What's New In Python 3.2 — Python 3.6.5 ドキュメント 6077
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... moryview ( b 'abcdefgh' ) as v : ... print ( v . tolist ()) [97, 98, 99, 100, 101, 102, 103, 104] (Added b ... たに追加されました: xml.etree.ElementTree.fromstringlist() 、断片のシーケンスから XML 文書を組み立てます xm ... 登録するのに使用します xml.etree.ElementTree.tostringlist() 、全サブリストを含めた文字列表記に使用します xml ... ました: xml.etree.ElementTree.getchildren() 代わりに list(elem) を使用してください。 xml.etree.ElementTree.g ...
https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
はじめに — Python 3.6.5 ドキュメント 5941
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... オブジェクトがその型かどうか調べられます; 例えば、 PyList_Check(a) は、 a で示されたオブジェクトが Python リ ... とんどありません; 例外としてよく知られているのは、 PyList_SetItem() と PyTuple_SetItem() で、これらはシーケン ... えません。 同じく、リストに値を入れていくコードは PyList_New() と PyList_SetItem() で書けます。 しかし実際に ... ーチェックにも配慮しています): PyObject * tuple , * list ; tuple = Py_BuildValue ( "(iis)" , 1 , 2 , "three ...
https://man.plustar.jp/python/c-api/intro.html - [similar]
19.4. mailbox --- 様々な形式のメールボックス操作 — Python 3.6.5 ドキュメント 5941
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ox の全てのメソッドに加え以下のメソッドもあります: list_folders ( ) ¶ 全てのフォルダ名のリストを返します。 ... lbox の全てのメソッドの他に次のメソッドがあります: list_folders ( ) ¶ 全てのフォルダ名のリストを返します。 ... 深く扱っています: import mailbox import email.errors list_names = ( 'python-list' , 'python-dev' , 'python-b ... ilbox . mbox ( '~/email/ %s ' % name ) for name in list_names } inbox = mailbox . Maildir ( '~/Maildir' , ...
https://man.plustar.jp/python/library/mailbox.html - [similar]
21.18. smtpd --- SMTP サーバー — Python 3.6.5 ドキュメント 5941
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... to process_message() in the kwargs['mail_options'] list. decode_data and enable_SMTPUTF8 cannot be set to ... to process_message() in the kwargs['mail_options'] list. decode_data and enable_SMTPUTF8 cannot be set to ... returned by socket.accept received_lines ¶ Holds a list of the line strings (decoded using UTF-8) received ... AIL FROM:" line from the client. rcpttos ¶ Holds a list of strings containing the addresses identified in ...
https://man.plustar.jp/python/library/smtpd.html - [similar]
9. クラス — Python 3.6.5 ドキュメント 5941
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... When the method object is called with an argument list, a new argument list is constructed from the insta ... nce object and the argument list, and the function object is called with this new a ... rgument list. 9.3.5. クラスとインスタンス変数 ¶ 一般的に、インス ... me = name self . tricks = [] # creates a new empty list for each dog def add_trick ( self , trick ): self ...
https://man.plustar.jp/python/tutorial/classes.html - [similar]
4. その他の制御フローツール — Python 3.6.5 ドキュメント 5941
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... words [:]: # Loop over a slice copy of the entire list. ... if len ( w ) > 6 : ... words . insert ( 0 , w ... うな イテレータ であることはすでに見てきました。関数 list() もまた一つの例です。これはイテラブルからリストを ... 生成します: >>> list ( range ( 5 )) [0, 1, 2, 3, 4] 後ほど、イテラブルを ... # return Fibonacci series up to n ... """Return a list containing the Fibonacci series up to n.""" ... re ...
https://man.plustar.jp/python/tutorial/controlflow.html - [similar]
3. 形式ばらない Python の紹介 — Python 3.6.5 ドキュメント 5941
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... 列の長さ (length) を返します: >>> s = 'supercalifragilisticexpialidocious' >>> len ( s ) 34 参考 テキストシー ... について、詳しく記述されています。 3.1.3. リスト型 (list) ¶ Pythonは多くの 複合 (compound) データ型を備えて ... まとめるのに使われます。最も汎用性が高いのは リスト (list) で、コンマ区切りの値 (要素) の並びを角括弧で囲んだ ... ] 25 >>> squares [ - 3 :] # slicing returns a new list [9, 16, 25] 全てのスライス操作は、指定された要素を ...
https://man.plustar.jp/python/tutorial/introduction.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT