⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dom2.py

📁 python web programming 部分
💻 PY
字号:
#!/usr/bin/pythonimport sysfrom xml.dom.ext import PrettyPrintfrom xml.dom import minidomdoc = minidom.parse(open(sys.argv[1]))for n in doc.getElementsByTagName("ingredients"):    n.tagName = "ingredientlist"for n in doc.getElementsByTagName("item"):    # Change the name of "item" to "ingredient"    n.tagName = "ingredient"    # Change attribute name    attr = n.getAttribute("num")    n.setAttribute("quantity",attr)    n.removeAttribute("num")PrettyPrint(doc)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -