我的第一个python脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我的第一个python脚本相关的知识,希望对你有一定的参考价值。
import urllib2 import xml.dom.minidom source = urllib2.urlopen('http://www.bbc.co.uk/') #data = repr(source.read()); doc = xml.dom.minidom.parse(source) all = doc.getElementsByTagName("h3") for h3 in all : parent = h3.parentNode if (parent.getAttribute("id") == "promo_area"): child = h3.childNodes[1] child = child.childNodes[2] print ("\nPresent Headline : ") print (child.data+ "\n")
以上是关于我的第一个python脚本的主要内容,如果未能解决你的问题,请参考以下文章