Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Extracting items from 2d List

Tags:

python

I have one 2d list splited_body:

splited_body= [
 ['startmsg', 'This is a test massage.', 'endmsg\r\n'], 
 ['startmsg', 'Hi There is some issue in the process.', '5', 'F3', 'D1', '2', 'endmsg\r\n']
]

I want to print all data before 'endmsg' and I am using for and if combination as below:

for i in range(len(splited_body)):
    for j in range(len(splited_body[i])):
        if splited_body[i][j] == 'endmsg':
            break
        x = splited_body[i][j]
        print(x)

But it is printing all items in the list. How can I do that. Please someone tell what I am doing wrong?

like image 844
hekuma Avatar asked Feb 13 '26 12:02

hekuma


1 Answers

Using in keyword you can iterate individual elements in a list. So you can try this out:

for body in splited_body:
    for msg in body:
        if msg.strip() == 'endmsg':
            break
        print(msg)
like image 115
Avinash Avatar answered Feb 16 '26 02:02

Avinash