NavigableString
tag.string
# u'Extremely bold'
type(tag.string)
# <class 'bs4.element.NavigableString'>unicode_string = unicode(tag.string)
unicode_string
# u'Extremely bold'
type(unicode_string)
# <type 'unicode'>tag.string.replace_with("No longer bold")
tag
# <blockquote>No longer bold</blockquote>Last updated