How to extend a list by appending new items in Python

2 Answers

0 votes
lst = [1, 2]
print(lst)

lst.extend([3, 4])
print(lst)

lst.extend('abc')
print(lst)



'''
run:

[1, 2]
[1, 2, 3, 4]
[1, 2, 3, 4, 'a', 'b', 'c']
  
'''

 



answered Jun 23, 2020 by avibootz
0 votes
lst = [1, 2]
print(lst)

lst.extend({'x': 100, 'y': 200})
print(lst)



'''
run:

[1, 2]
[1, 2, 'x', 'y']
  
'''

 



answered Jun 23, 2020 by avibootz
...