Posts: 5
Threads: 1
Joined: Nov 2017
data = 'Red Duck | $125 | New | Ready | Very Good'
product, price, condition, available, rating = data.split('|') Is there an easy way to strip leading and trailing spaces with the strip() function
without having to do each item separately?
Posts: 8,151
Threads: 160
Joined: Sep 2016
map and strip from string module
from string import strip
data = 'Red Duck | $125 | New | Ready | Very Good'
product, price, condition, available, rating = map(strip, data.split('|')) map and lambda
data = 'Red Duck | $125 | New | Ready | Very Good'
product, price, condition, available, rating = map(lambda s:s.strip(), data.split('|')) using list comprehension
data = 'Red Duck | $125 | New | Ready | Very Good'
product, price, condition, available, rating = [s.strip() for s in data.split('|')]
Posts: 12,022
Threads: 484
Joined: Sep 2016
You can use strip on same line:
>>> data = ' Red Duck | $125 | New | Ready | Very Good '.strip()
>>> data
'Red Duck | $125 | New | Ready | Very Good'
>>>
Posts: 8,151
Threads: 160
Joined: Sep 2016
Nov-03-2017, 11:45 AM
(This post was last modified: Nov-03-2017, 11:46 AM by buran.)
Also split at ' | ' if consistent
data = 'Red Duck | $125 | New | Ready | Very Good'
product, price, condition, available, rating = data.split(' | '))
Posts: 5
Threads: 1
Joined: Nov 2017
Thanks to buran & Larz60+ for the quick replies.
Let me work thru them and see if I have any more questions.
Posts: 5
Threads: 1
Joined: Nov 2017
buran - your #1 gives me a "Import Error: cannot import name 'strip'".
If I use import string & string.strip, it gives me a "AttributeError; module 'string' has no attribute "strip'".
Is this an old way of doing this that has been done away with?
Your #2 & #3 work just fine.
Posts: 2,120
Threads: 10
Joined: May 2017
It has been removed with Python 3. I guess the cause was code duplication. You can use instead str.strip .
Posts: 2,953
Threads: 48
Joined: Sep 2016
Nov-03-2017, 02:09 PM
(This post was last modified: Nov-03-2017, 02:09 PM by wavic.)
The str object has strip method. Any string is an str object so: "any string".strip()
In [1]: s = "a string"
In [2]: type(s)
Out[2]: str
In [3]: dir(s)
Out[3]:
# I've removed the __dunder__ functions to shorten the output
['capitalize',
'casefold',
'center',
'count',
'encode',
'endswith',
'expandtabs',
'find',
'format',
'format_map',
'index',
'isalnum',
'isalpha',
'isdecimal',
'isdigit',
'isidentifier',
'islower',
'isnumeric',
'isprintable',
'isspace',
'istitle',
'isupper',
'join',
'ljust',
'lower',
'lstrip',
'maketrans',
'partition',
'replace',
'rfind',
'rindex',
'rjust',
'rpartition',
'rsplit',
'rstrip',
'split',
'splitlines',
'startswith',
'strip', # here it is.
'swapcase',
'title',
'translate',
'upper',
'zfill']
In [4]: type("another string")
Out[4]: str
In [5]: "_strip it_".strip('_') # without an argument stip() will strip the whitespaces - ' \t\n\r\x0b\x0c'
Out[5]: 'strip it'
Posts: 8,151
Threads: 160
Joined: Sep 2016
Dead_EyE is right in python 3 you can use str.strip
Python 3.5.2 (default, Jul 17 2016, 00:00:00)
[GCC 4.8.4] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> data = 'Red Duck | $125 | New | Ready | Very Good'
>>> product, price, condition, available, rating = map(str.strip, data.split('|'))
>>> print(product, rating)
Red Duck Very Good
>>> My bad, I should have mentioned it's python2 or leave it out
Posts: 5
Threads: 1
Joined: Nov 2017
buran - If I use ' | ' (with the spaces) in the interpreter, it gives me an error. If I use it
in a program, it runs, but I end up with no data extracted. This is very strange.
BTW, how did you get that little box around ' | '?
|