Guest User

Untitled

a guest
Jan 18th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. frau = ['Johana','Gretta','Zelda', 'Litgard','Margaret','Helma']
  2.  
  3. new_list = frau[:3].extend(['Abdul','Madjid','Zahir']).extend(frau[3:])
  4.  
  5. new_list = frau[:3]
  6. new_list.extend(['Abdul','Madjid','Zahir'])
  7. new_list.extend(frau[3:])
  8. print(new_list) #['Johana','Gretta','Zelda','Abdul','Madjid','Zahir','Litgard',
  9. 'Margaret','Helma']
Add Comment
Please, Sign In to add comment