简体   繁体   中英

How to add elements to a sub list in Python?

Consider a list inside a list

list1 = ["element1","element2",["subelement1","subelement2"]]

subelement1 can be accessed by index [2][0]

print (list1[2][0])

But how can I insert elements at [2][x] position if only two parameters can be passed to insert function.

list.insert(index, element) 

Lets say i want to insert "subelement0" at [2],[0] . That makes the list :

list1 = ["element1","element2",["subelement0","subelement1","subelement2"]]

Try to insert element to sublist as below:

list1[2].insert(0, 'subelement0') 
print(list1)
#  ['element1', 'element2', ['subelement0', 'subelement1', 'subelement2']]

I would like to extend the answer posted by @Andersson. It would be nice to checking the type of the list element, then insert a new value.

def list_modify(element_to_add):
  list1 = ["element1", "element2", ["subelement1", "subelement2"]]
  for index, value in enumerate(list1):
      if isinstance(value, list):
          list1[index].insert(0, element_to_add)
  print(list1)
  #  ['element1', 'element2', ['subelement0', 'subelement1', 'subelement2']]
if __name__ == "__main__":
  list_modify('subelement0')

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