concat 2 strings in[ytohn code example
Example 1: python merge strings
my_list = ['a', 'b', 'c', 'd']
my_string = ','.join(my_list)
# Output = 'a,b,c,d'
Example 2: combine two strings python
>>> 'a' + 'b' + 'c'
'abc'
my_list = ['a', 'b', 'c', 'd']
my_string = ','.join(my_list)
# Output = 'a,b,c,d'
>>> 'a' + 'b' + 'c'
'abc'