Posts: 35
Threads: 15
Joined: Aug 2020
Feb-16-2021, 10:43 AM
(This post was last modified: Feb-16-2021, 11:13 AM by pprod.)
Hi,
Var1 is a list and I'd like to strip characters from each item in the list and save the result as a new list called Var2. I can't find a way to do it. The code below seemed to be the logical solution but it doesn't work. What am I missing here? Thanks.
for item in Var1:
Var2 = item.strip('1234 :')
print(Var2) Output: ['1234 :A']
['1234 :B']
['1234 :C']
Posts: 8,151
Threads: 160
Joined: Sep 2016
Feb-16-2021, 10:50 AM
(This post was last modified: Feb-16-2021, 10:52 AM by buran.)
post sample of Var1 , also note the inconsistency in your code - you use Var2 and var2
the output suggest you have nested list of lists.
Posts: 35
Threads: 15
Joined: Aug 2020
(Feb-16-2021, 10:50 AM)buran Wrote: post sample of Var1 , also note the inconsistency in your code - you use Var2 and var2
the output suggest you have nested list of lists.
Thanks, buran. Var1 is the same as the output: ['1234 :A'], ['1234 :B'], ['1234 :C']
The 'for loop' I wrote doesn't change Var1 in any way. I want Var2 to be: ['A'], ['B'], ['C'].
Thanks for pointing out the inconsistency Var2 vs var2.
Posts: 8,151
Threads: 160
Joined: Sep 2016
(Feb-16-2021, 11:13 AM)pprod Wrote: Var1 is the same as the output: ['1234 :A'], ['1234 :B'], ['1234 :C']
If this is really the case, then you have tuple of lists (note having brackets is not always mandatory to define tuple.
can you print(repr(var1)) just before the loop and post the result, so that we know what you work with.
var1 =['1234 :A'], ['1234 :B'], ['1234 :C']
print(type(var1))
var2 = tuple([item[0].split(':')[-1]] for item in var1)
print(var2)
var2 = tuple([item[0][6:]] for item in var1)
print(var2) strip() is a bit tricky and you should be careful with. - it will strip from both ends and will strip chars separetly, e.g. '123432 1 :' will also be stripped
Posts: 35
Threads: 15
Joined: Aug 2020
(Feb-16-2021, 11:58 AM)buran Wrote: (Feb-16-2021, 11:13 AM)pprod Wrote: Var1 is the same as the output: ['1234 :A'], ['1234 :B'], ['1234 :C']
If this is really the case, then you have tuple of lists (note having brackets is not always mandatory to define tuple.
can you print(repr(var1)) just before the loop and post the result, so that we know what you work with.
var1 =['1234 :A'], ['1234 :B'], ['1234 :C']
print(type(var1))
var2 = tuple([item[0].split(':')[-1]] for item in var1)
print(var2)
var2 = tuple([item[0][6:]] for item in var1)
print(var2) strip() is a bit tricky and you should be careful with. - it will strip from both ends and will strip chars separetly, e.g. '123432 1 :' will also be stripped
Thanks, buran. If I print(repr(Var1)) I get Var1 again:['1234 :A'], ['1234 :B'], ['1234 :C']. I'm cosidering running a RegEx on Var1 to capture the text I want and save as Var2.
Posts: 8,151
Threads: 160
Joined: Sep 2016
Feb-16-2021, 12:29 PM
(This post was last modified: Feb-16-2021, 12:47 PM by buran.)
(Feb-16-2021, 12:18 PM)pprod Wrote: print(repr(Var1)) I get Var1 again:['1234 :A'], ['1234 :B'], ['1234 :C']. not possible, in the best case - you get "['1234 :A'], ['1234 :B'], ['1234 :C']" - note the double quotes, in which case you have a str . But in this case the output in your post1 will not make sense unless if you have new lines
what is the output from
print(type(Var1))
How you don't know what type Var1 is. Ideally, post minimal reproducible example that we can copy in IDE and run it. Var1 including.
Posts: 1,838
Threads: 2
Joined: Apr 2017
(Feb-16-2021, 10:43 AM)pprod Wrote: Var1 is a list and I'd like to strip characters from each item in the list and save the result as a new list called Var2.
Unless I'm missing something, this basically sounds like a use for a list comprehension or map .
Posts: 35
Threads: 15
Joined: Aug 2020
(Feb-16-2021, 12:29 PM)buran Wrote: (Feb-16-2021, 12:18 PM)pprod Wrote: print(repr(Var1)) I get Var1 again:['1234 :A'], ['1234 :B'], ['1234 :C']. not possible, in the best case - you get "['1234 :A'], ['1234 :B'], ['1234 :C']" - note the double quotes, in which case you have a str . But in this case the output in your post1 will make sense unless if you have new lines
what is the output from
print(type(Var1))
How you don't know what type Var1 is. Ideally, post minimal reproducible example that we can copy in IDE and run it. Var1 including.
print(type(Var1)) returns <class 'list'>. Sorry, I can't include an example that can be reproduced as it involves opening a confidential file and running a RegEx on every page of that file. Var1 is a list that contains the matches for every page. I'm really sorry, I'm a beginner and I can't explain myself in the best possible way sometimes. Thanks for your time.
Posts: 8,151
Threads: 160
Joined: Sep 2016
Feb-16-2021, 01:11 PM
(This post was last modified: Feb-16-2021, 01:12 PM by buran.)
OK, list it is
var1 = [['1234 :A'], ['1234 :B'], ['1234 :C']]
print(type(var1))
var2 = [[item[0].split(':')[-1]] for item in var1]
print(var2)
var2 = [[item[0][6:]] for item in var1]
print(var2)
# or one by one in a loop:
for item in var1:
prefix, var2 = item[0].split(':')
print([var2]) # to put var2 inside a list, because I understand that is waht you want Output: <class 'list'>
[['A'], ['B'], ['C']]
[['A'], ['B'], ['C']]
['A']
['B']
['C']
|