我想从\u2022
删除dList
,但我再次获得相同的列表
dList = [u'\u2022 Slim fit',
u'\u2022 Barrel cuffs with two buttons',
u'\u2022 One button on sleeve placket',
u'\u2022 Turndown collar',
u'Washing Care: ',
u'\u2022 Machine wash low in cold water',
u'\u2022 Medium iron',
u'\u2022 Do not bleach',
u'\u2022 Hang to dry',
u'\u2022 Do not tumble dry',
u'\u2022 Wash separately',
u'Model\'s measurements: Chest 34", Waist 30", Hips 32"',
u'Height: 175cm.',
u'He is wearing a N. Tyler Size 15.5.',
u'Please note: ',
u'Although we do our best to make sure that the colours shown on our website are accurate, actual colours may vary due to monitor/display/resolution.',
u'Dark Blue Checks',
u'100% Cotton , European Fabric']
[i.replace("\u2022"," ") for i in dList]
Output:
[u'\u2022 Slim fit',
u'\u2022 Barrel cuffs with two buttons',
u'\u2022 One button on sleeve placket',
u'\u2022 Turndown collar',
u'Washing Care: ',
u'\u2022 Machine wash low in cold water',
u'\u2022 Medium iron',
u'\u2022 Do not bleach',
u'\u2022 Hang to dry',
u'\u2022 Do not tumble dry',
u'\u2022 Wash separately',
u'Model\'s measurements: Chest 34", Waist 30", Hips 32"',
u'Height: 175cm.',
u'He is wearing a N. Tyler Size 15.5.',
u'Please note: ',
u'Although we do our best to make sure that the colours shown on our website are accurate, actual colours may vary due to monitor/display/resolution.',
u'Dark Blue Checks',
u'100% Cotton , European Fabric']
也尝试过:
import re
[re.sub("\u2022","",i) for i in dList]
但没有运气....有人可以帮助我......
答案 0 :(得分:6)
unicode
s are unicode
s and str
s are str
s.
[i.replace(u"\u2022", u" ") for i in dList]
答案 1 :(得分:0)
[x.encode('ascii','ignore') for x in dList]
应该做的伎俩。