Not actually a simple TIL but some tips

> text = 'women’s jacket'
> text = text.encode('ascii','ignore')
> print(text)
b'womens jacket'
back to main