如何从html文件中获取标头

时间:2017-11-16 02:49:03

标签: python html

我很难理解我想要为我的家庭作业问题做些什么。

问题陈述......给定一个str,返回从str开始到包括的整个子字符串。需求: 该字符串包含。

The code is...
def get_header(s):
'''(str) -> str
Return the start of the given string up to and including</head>.'''

以下是我希望用于此代码的html文件示例的小段片段....

 <html>
            <head>
                <style>
    body {
        background: black;
        text-align: center;
        color: white;
        }

这个问题是否要求我只阅读前两个html行,还是要在整个html文件中查找所有标题?

谢谢,任何帮助将不胜感激,

奈德

1 个答案:

答案 0 :(得分:-1)

使用js:

var x = document.getElementsByTagName("HEAD")[0];
var y = x.outerHTML