python append to string array code example
Example: how to extend an array python
my_list = ['geeks', 'for']
another_list = [6, 0, 4, 1]
my_list.extend(another_list)
my_list = ['geeks', 'for']
another_list = [6, 0, 4, 1]
my_list.extend(another_list)