子孙遍历:

父>子

.contents .children .descendants(后两个只能用于for循环)

子>父

.parent .parents

同辈平行(不同的树干的同一级之间不能遍历)

.next_sibling .previous_sibling .next_siblings .previous_siblings

import bs4
for sinling in soup.a.previous(OR next)_siblings
print(sibling)

-格式化html使用命令.pretiffy
-bs4将读取的所有html文件采用utf-8格式进行编码