トップページ
ひらく | たたむ | ページトップ
↓マウスで反転選択した文字を検索
Python
   
ページ内検索 ページ外検索
検索したい文字を入力して
ENTERを押すと移動します。
\n
[ トップページ ]
[ ____CommandPrompt ] [ ____JScript ] [ ____MySQL ] [ ____Cygwin ] [ ____Java ] [ ____Emacs ] [ ____Make ] [ ____Perl ] [ ____Python ] [ ____OpenGL ] [ ____C# ] [ ____StyleSheet ] [ ____C++ ] [ ____Winsock ] [ ____Thread ] [ ____VisualStudio ] [ ____C ] [ ____Win32API ] [ ____Lua ] [ ____PhotoShop ]
ヘッダ検索
___

■ xml


___

■ minidom

    from xml.dom import minidom

    # test.xml を開く
    doc = minidom.parse("d:/test.xml")

    # < test> 要素を取得
    e = doc.getElementsByTagName("test")[0]

    # test name= の値を取得
    print(e.getAttribute("name"))

    # attribute をセット
    e.setAttribute("name", "test")

    print(e.getAttribute("name"))

    # XML 文書の全ての構成要素は Node のサブクラス
    print ( e.parentNode.localName );

    # Node をつくり、子供に追加
    n = doc.createElement( "newnode" );
    n.setAttribute( "key", "value" );
    e.appendChild( n );

    # 保存
    fp=open("d:/out.xml","w")
    doc.writexml(fp)
    fp.close()


NINJAIDX 8