Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
666 views
in Technique[技术] by (71.8m points)

python - Convert Multiline into list

I have extracted a set of data from HTML page and copied to a variable. The variable looks like

names='''
      Apple
      Ball
      Cat'''

Now I like to join each line into a list so that I can access any line I want. Is there any way to do that in Python

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Using splitlines() to split by newline character and strip() to remove unnecessary white spaces.

>>> names='''
...       Apple
...       Ball
...       Cat'''
>>> names
'
      Apple
      Ball
      Cat'
>>> names_list = [y for y in (x.strip() for x in names.splitlines()) if y]
>>> # if x.strip() is used to remove empty lines
>>> names_list
['Apple', 'Ball', 'Cat']

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...