You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
585 B
36 lines
585 B
# add ...
|
|
# -*- coding: utf-8 -*-
|
|
# author: youxinyu
|
|
# githb: yogayu
|
|
|
|
# added by daiao
|
|
|
|
from pyquery import PyQuery as pq
|
|
|
|
f = open("step2/index.html", encoding='utf-8')
|
|
html = f.read()
|
|
f.close()
|
|
|
|
doc = pq(html)
|
|
tag = input()
|
|
result = ""
|
|
if tag == "meta":
|
|
tag = doc('meta:nth-child(4)')
|
|
attr = input()
|
|
result = tag.attr(attr)
|
|
else:
|
|
tag = doc(tag)
|
|
result = doc(tag).text()
|
|
print (result, end='')
|
|
|
|
|
|
if tag == 'align':
|
|
h1Align= doc('h1').attr('align')
|
|
pAlign= doc('p').attr('align')
|
|
result = (h1Align and pAlign)
|
|
|
|
|
|
# print(result),
|
|
print (result, end='')
|
|
|