Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 19 for node (0.006 sec.)
- 32.2. ast --- 抽象構文木 — Python 3.6.5 ドキュメント 12635
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...オブジェクトにコンパイルすることができます。 32.2.1. Node クラス ¶ class ast. AST ¶ このクラスは全ての AST ノ...成して属性を埋めるには、次のようにすることができます node = ast . UnaryOp () node . op = ast . USub () node.... operand = ast . Num () node . operand . n = 5 node . operand . lineno = 0 node.... operand . col_offset = 0 node . lineno = 0 node . col_offset = 0 もしくはよりコン... - https://man.plustar.jp/python/library/ast.html - [similar]
- 20.6. xml.dom --- 文書オブジェクトモデル (DOM) API — Python 3.6.5 ドキュメント 12362
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...名前空間 URI です。 加えて、 xml.dom には基底となる Node クラスと DOM 例外クラスが収められています。このモジ...ュールで提供されている Node クラスは DOM 仕様で定義されているメソッドや属性は何...なりません。このモジュールの一部として提供されている Node クラスでは、具体的な Node オブジェクトの nodeType...on オブジェクト 根底にある実装へのインタフェース。 Node Node オブジェクト ドキュメント内の大部分のオブジェ... - https://man.plustar.jp/python/library/xml.dom.html - [similar]
- 20.8. xml.dom.pulldom --- 部分的な DOM ツリー構築のサポート — Python 3.6.5 ドキ... 11594
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...pulldom . parse ( 'sales_items.xml' ) for event , node in doc : if event == pulldom . START_ELEMENT and n...ode . tagName == 'item' : if int ( node . getAttribute ( 'price' )) > 50 : doc . expandNod...e ( node ) print ( node . toxml ()) event は定数で以下の内の...ACTERS PROCESSING_INSTRUCTION IGNORABLE_WHITESPACE node は型 xml.dom.minidom.Document 、 xml.dom.minidom.E... - https://man.plustar.jp/python/library/xml.dom.pulldom.html - [similar]
- 15.1. hashlib --- セキュアハッシュおよびメッセージダイジェスト — Python 3.6.5 ... 9886
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
..., person=b'' , fanout=1 , depth=1 , leaf_size=0 , node_offset=0 , node_depth=0 , inner_size=0 , last_node..., person=b'' , fanout=1 , depth=1 , leaf_size=0 , node_offset=0 , node_depth=0 , inner_size=0 , last_node...to 2**32-1, 0 if unlimited or in sequential mode). node_offset : node offset (0 to 2**64-1 for BLAKE2b, 0...the first, leftmost, leaf, or in sequential mode). node_depth : node depth (0 to 255, 0 for leaves, or in... - https://man.plustar.jp/python/library/hashlib.html - [similar]
- 20.7. xml.dom.minidom --- 最小限の DOM の実装 — Python 3.6.5 ドキュメント 8964
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...newdoc . documentElement text = newdoc . createTextNode ( 'Some textual content.' ) top_element . appendCh...PI と xml.dom.minidom との違いについて列挙します。 Node. unlink ( ) ¶ DOM との内部的な参照を破壊して、循環...parse ( datasource ) as dom : ... # Work with dom. Node. writexml ( writer , indent="" , addindent="" , ne...ッダの encoding フィールドを指定することができます。 Node. toxml ( encoding=None ) ¶ DOM ノードによって表わさ... - https://man.plustar.jp/python/library/xml.dom.minidom.html - [similar]
- 21.20. uuid --- UUID objects according to RFC 4122 — Python 3.6.5 ドキュメント 8093
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...lock_seq_hi_variant , 8-bit clock_seq_low , 48-bit node ) as the fields argument, or a single 128-bit inte...の次の 8 ビット clock_seq_low UUID の次の 8 ビット node UUID の最後の 48 ビット time 60 ビットのタイムスタ...uuid モジュールには以下の関数があります: uuid. getnode ( ) ¶ Get the hardware address as a 48-bit positiv...of any one of them may be returned. uuid. uuid1 ( node=None , clock_seq=None ) ¶ UUID をホスト ID、シーケ... - https://man.plustar.jp/python/library/uuid.html - [similar]
- 超高水準レイヤ — Python 3.6.5 ドキュメント 8008
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...でメモリ確保したものでなければなりません。 struct _node* PyParser_SimpleParseString ( const char *str , in...を 0 にして単純化したインタフェースです。 struct _node* PyParser_SimpleParseStringFlags ( const char *str...NULL にして単純化したインタフェースです。 struct _node* PyParser_SimpleParseStringFlagsFilename ( const c...ilesystemencoding() ) でデコードされます。 struct _node* PyParser_SimpleParseFile ( FILE *fp , const char... - https://man.plustar.jp/python/c-api/veryhigh.html - [similar]
- 11. 標準ライブラリミニツアー --- その 2 — Python 3.6.5 ドキュメント 7735
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア
...()) Handling task1 unsearched = deque ([ starting_node ]) def breadth_first_search ( unsearched ): node =...unsearched . popleft () for m in gen_moves ( node ): if is_goal ( m ): return m unsearched . append... - https://man.plustar.jp/python/tutorial/stdlib2.html - [similar]
- 20.10. xml.sax.handler --- SAX ハンドラの基底クラス — Python 3.6.5 ドキュメント 7683
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...アクセス: 読み書き可 xml.sax.handler. property_dom_node ¶ 値: "http://xml.org/sax/properties/dom-node" デー...タ型: org.w3c.dom.Node (Python 2 では未サポート) 説明: パース時は DOM イテ... - https://man.plustar.jp/python/library/xml.sax.handler.html - [similar]
- 16.14. platform --- 実行中プラットフォームの固有情報を参照する — Python 3.6.5 ... 7649
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...返します。不明な場合は空文字列を返します。 platform. node ( ) ¶ コンピュータのネットワーク名を返します。ネッ...めて可搬性の高い uname インタフェースです。 system , node , release , version , machine , processor の6つの属...属性名が異なります; os.uname() はそれらを sysname と nodename と命名します。 不明な項目は '' となります。 バ... - https://man.plustar.jp/python/library/platform.html - [similar]
