以下代码来自“用于数据分析的 Python”:
from io import StringIO
import io
tag = '<a href="http://www.google.com">Google</a>'
root = objectify.parse(io.StringIO(tag).getroot())
执行代码会产生以下错误:
TypeError: initial_value must be unicode or None, not str
请帮忙!
以下代码来自“用于数据分析的 Python”:
from io import StringIO
import io
tag = '<a href="http://www.google.com">Google</a>'
root = objectify.parse(io.StringIO(tag).getroot())
执行代码会产生以下错误:
TypeError: initial_value must be unicode or None, not str
请帮忙!