简体   繁体   中英

Remove \`u2022` unicode special character from python list

I want to remove \• from the dList but i am getting same list again

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']

Also tried :

import re

[re.sub("\u2022","",i) for i in dList]

But no luck....can someone help me please...

unicodeunicodestrstr

[i.replace(u"\u2022", u" ") for i in dList]
[x.encode('ascii','ignore') for x in dList]

应该做到的。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM