gpt4 book ai didi

python - 将 NavigableString 转换为 unicode 字符串

转载 作者:太空宇宙 更新时间:2023-11-04 10:56:55 24 4
gpt4 key购买 nike

当我运行以下代码时:

如果 substr in movie.lowercase:

出现以下错误

AttributeError: 'NavigableString' 对象没有 'lowercase' 属性

电影来自这里:

movie = row.td.div.h4.string

我试着改成(没有成功)

movie = row.td.div.h4.string.string

movie = unicode(row.td.div.h4.string)

你知道如何用 lowercase 方法将 NavigableString 转换成普通的 unicode 字符串吗?

最佳答案

unicode() 没有 .lowercase() 方法,它有 .lower()

NavigableStringunicode 的实例。它具有所有 unicode 方法。

A case-insensitive search is more complicated then just calling .lower()例如full unicode casefolding in Python (case-insensitive search for keywords) .

关于python - 将 NavigableString 转换为 unicode 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9099523/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com